So che questa è una vecchia domanda, ma so anche che alcune persone sono proprio come me e sono sempre alla ricerca di risposte aggiornate , poiché le vecchie risposte a volte possono avere informazioni deprecate se non aggiornate.
Ora è gennaio 2020 e sto usando Django 2.2.6 e Python 3.7
Nota: utilizzo DJANGO REST FRAMEWORK , il codice seguente per l'invio di e-mail era in un modello di visualizzazione nel mioviews.py
Quindi dopo aver letto più belle risposte, questo è quello che ho fatto.
from django.template.loader import render_to_string
from django.core.mail import EmailMultiAlternatives
def send_receipt_to_email(self, request):
emailSubject = "Subject"
emailOfSender = "email@domain.com"
emailOfRecipient = 'xyz@domain.com'
context = ({"name": "Gilbert"}) #Note I used a normal tuple instead of Context({"username": "Gilbert"}) because Context is deprecated. When I used Context, I got an error > TypeError: context must be a dict rather than Context
text_content = render_to_string('receipt_email.txt', context, request=request)
html_content = render_to_string('receipt_email.html', context, request=request)
try:
#I used EmailMultiAlternatives because I wanted to send both text and html
emailMessage = EmailMultiAlternatives(subject=emailSubject, body=text_content, from_email=emailOfSender, to=[emailOfRecipient,], reply_to=[emailOfSender,])
emailMessage.attach_alternative(html_content, "text/html")
emailMessage.send(fail_silently=False)
except SMTPException as e:
print('There was an error sending an email: ', e)
error = {'message': ",".join(e.args) if len(e.args) > 0 else 'Unknown Error'}
raise serializers.ValidationError(error)
Importante! Quindi, come si render_to_string
arriva receipt_email.txt
e receipt_email.html
? Nel mio settings.py
, ho TEMPLATES
e sotto è come appare
Presta attenzione DIRS
, c'è questa linea os.path.join(BASE_DIR, 'templates', 'email_templates')
. Questa linea è ciò che rende accessibili i miei modelli. Nel mio project_dir, ho una cartella chiamata templates
e una sottodirectory chiamata email_templates
così project_dir->templates->email_templates
. I miei modelli receipt_email.txt
e receipt_email.html
sono nella email_templates
sottodirectory.
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates'), os.path.join(BASE_DIR, 'templates', 'email_templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
Vorrei solo aggiungere che, il mio recept_email.txt
assomiglia a questo;
Dear {{name}},
Here is the text version of the email from template
E, il mio receipt_email.html
assomiglia a questo;
Dear {{name}},
<h1>Now here is the html version of the email from the template</h1>
1.7
offertehtml_message
insend_email
stackoverflow.com/a/28476681/953553