视图.py
if 'send_email' in request.POST:
subject, from_email, to = 'Parent Incident Notification',user.email, person.parent_email
html_content = render_to_string('incident/print.html',{'person':person,
'report':report,
})
text_content = strip_tags(html_content)
msg = EmailMultiAlternatives(subject, text_content, settings.DEFAULT_FROM_EMAIL, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()
以上是发送电子邮件的视图。通过这种方式,我可以将 html 内容与邮件一起发送,它仅将电子邮件发送到 [to] 地址,我还想制作另一个密件抄送和抄送。我浏览了Emailmessage objects
文档.我不知道如何包含密件抄送和抄送来改变我的观点。
需要帮忙。
谢谢