ฉันรู้ว่านี่เป็นคำถามเก่า แต่ฉันก็รู้ว่าบางคนก็เหมือนฉันและมักจะมองหาคำตอบ uptodateเนื่องจากบางครั้งคำตอบเก่าอาจมีข้อมูลที่ไม่สนับสนุนหากไม่ได้รับการปรับปรุง
มันคือเดือนมกราคม 2020 และฉันใช้ Django 2.2.6 และ Python 3.7
หมายเหตุ: ฉันใช้DJANGO REST FRAMEWORKรหัสด้านล่างสำหรับการส่งอีเมลอยู่ในชุดรูปแบบวิวในฉันviews.py
ดังนั้นหลังจากอ่านคำตอบที่ดีหลายข้อนี่คือสิ่งที่ฉันทำ
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)
สำคัญ! ดังนั้นจะrender_to_string
ได้รับreceipt_email.txt
และreceipt_email.html
อย่างไร ในฉันsettings.py
ฉันมีTEMPLATES
และด้านล่างเป็นลักษณะ
ให้ความสนใจDIRS
มีบรรทัดนี้บรรทัดos.path.join(BASE_DIR, 'templates', 'email_templates')
นี้คือสิ่งที่ทำให้แม่แบบของฉันสามารถเข้าถึงได้ ใน project_dir ของฉันฉันมีโฟลเดอร์ที่เรียกว่าtemplates
และ sub_directory ที่เรียกเช่นนี้email_templates
project_dir->templates->email_templates
แม่แบบของฉันreceipt_email.txt
และreceipt_email.html
อยู่ภายใต้email_templates
ไดเรกทอรีย่อย
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',
],
},
},
]
ขอผมเพิ่มอีกหน่อย, recept_email.txt
หน้าตาของผมแบบนี้;
Dear {{name}},
Here is the text version of the email from template
และreceipt_email.html
หน้าตาของฉันแบบนี้;
Dear {{name}},
<h1>Now here is the html version of the email from the template</h1>
1.7
ข้อเสนอDjangohtml_message
ในsend_email
stackoverflow.com/a/28476681/953553