これは古い質問ですが、一部の人々は私のようであり、常に最新の回答を探していることも知っています。古い回答は、更新されない場合、非推奨の情報になることがあるためです。
現在は2020年1月で、Django2.2.6とPython3.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があります。私のテンプレートとは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>