Saya tahu ini adalah pertanyaan lama, tetapi saya juga tahu bahwa beberapa orang sama seperti saya dan selalu mencari jawaban yang uptodate , karena jawaban lama terkadang dapat memiliki informasi yang sudah usang jika tidak diperbarui.
Sekarang Januari 2020, dan saya menggunakan Django 2.2.6 dan Python 3.7
Catatan: Saya menggunakan DJANGO REST FRAMEWORK , kode di bawah ini untuk mengirim email menggunakan model viewset diviews.py
Jadi setelah membaca beberapa jawaban yang bagus, inilah yang saya lakukan.
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)
Penting! Jadi bagaimana render_to_string
mendapatkan receipt_email.txt
dan receipt_email.html
? Di saya settings.py
, saya punya TEMPLATES
dan di bawah ini adalah tampilannya
Perhatikan DIRS
, ada baris ini os.path.join(BASE_DIR, 'templates', 'email_templates')
. Baris ini yang membuat templat saya dapat diakses. Dalam project_dir saya, saya memiliki folder bernama templates
, dan sub_directory dipanggil email_templates
seperti ini project_dir->templates->email_templates
. Templat saya receipt_email.txt
dan receipt_email.html
berada di bawah email_templates
subdirektori.
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',
],
},
},
]
Biarkan saya tambahkan saja, recept_email.txt
penampilan saya seperti ini;
Dear {{name}},
Here is the text version of the email from template
Dan, receipt_email.html
penampilan saya seperti ini;
Dear {{name}},
<h1>Now here is the html version of the email from the template</h1>
1.7
penawaran Djangohtml_message
disend_email
stackoverflow.com/a/28476681/953553