首页 > 解决方案 > 如何使用 msg.send() 在 django 的 html 电子邮件模板中传递用户名

问题描述

我是 Django 编码的新手。我目前正在研究 DRF Django Rest Framework 以及 API。我一直在尝试在用户注册后立即发送带有附件的 HTML 电子邮件模板。我已经实现了发送相同的功能,但我想将动态内容(如注册用户的电子邮件)从 views.py 传递到 HTML 电子邮件模板,但无法做到。我正在使用 msg.send()。

在 VIEWS.PY 中:

def attachment(request):
   queryset = User.objects.all()
   em=[]
   h=[]
   for star in queryset.iterator():
       em.append(star.email)
   print(em)    
   h=em[-1]
   msg = mail.EmailMultiAlternatives(
        subject = 'attachment',
        body = 'Hi, Welcome!',
        from_email = 'anushstella97@gmail.com',
        to = [h],
        connection = con
        )
   msg.attach_file('C:/Users/hp/Downloads/APIV1-master/APIV1- 
     master/polls/img.jpg')
   msg_html = render_to_string('C:/Users/hp/Anaconda3/Lib/site- 
  packages/allauth/templates/account/email/email_confirmation_message.html' 
  , {"email": request.user.email})

   msg.send()
   return HttpResponse('<h1>Created</h1>')

在 HTML 模板中:

<p>Thanks for signing up! We're excited to have you as an early user.</p>
                <p> Your registered email is : </p>
                <p>
                    <strong> {{ email }} </strong></p>

标签: djangodjango-rest-frameworkdjango-viewsdjango-allauthdjango-rest-framework-jwt

解决方案


要呈现模板,您可以使用render_to_stringfrom django.template.loader传递上下文变量。

例如

from django.template.loader import render_to_string
html = render_to_string("account/email/email_confirmation_message.html", {"email": request.user.email})

在 email_confirmation_message.html 中:

Hi {{ email }},
...

推荐阅读