আমি জানি এটি একটি পুরানো প্রশ্ন, তবে আমি এটাও জানি যে কিছু লোক আমার মতই থাকে এবং সর্বদা আপোডেট উত্তর খুঁজতে থাকে , যেহেতু পুরানো উত্তরগুলি আপডেট না করা হলে মাঝে মাঝে তথ্য যেতে পারে।
এটি এখন 2020 জানুয়ারী, এবং আমি জ্যাঙ্গো ২.২..6 এবং পাইথন ৩.7 ব্যবহার করছি
নোট: আমি ব্যবহার জ্যাঙ্গো বিশ্রাম ফ্রেমওয়ার্ক , ইমেল পাঠানোর জন্য নিচের কোড একটি ছিল মডেল viewset আমার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
অফারhtml_message
মধ্যেsend_email
stackoverflow.com/a/28476681/953553