You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import requests
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
def send_email(subject, text, to, sender=settings.MAILGUN_DEFAULT_FROM):
|
|
return requests.post(settings.MAILGUN_API_URL,
|
|
auth=("api", settings.MAILGUN_API_KEY),
|
|
data={"from": sender,
|
|
"to": to,
|
|
"subject": subject,
|
|
"text": text})
|
|
|