나는 이것이 오래된 질문이라는 것을 알고 있지만 일부 사람들은 나와 똑같고 항상 최신 답변을 찾고 있다는 것을 알고 있습니다. 왜냐하면 오래된 답변은 업데이트되지 않으면 정보가 더 이상 사용되지 않을 수 있기 때문입니다.
지금은 2020 년 1 월이며 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')
.This 라인 내 템플릿에 액세스 만드는 것입니다. 내 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>
1.7
는 stackoverflow.com/a/28476681/953553html_message
에서 제공send_email