我是 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>