Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图了解是否可以使用 Django 在应用引擎中格式化电子邮件正文。我有 Django 的所有网站格式,但我不明白我是否可以对电子邮件做同样的事情。谢谢。
在写评论时,我得到了解决方案:
testo = template.render(u'prova.html',{'prova':prova}) mail.send_mail(sender=email, to=email2, subject=oggetto,body=testo)
你可以。您不需要 HTML 文件,也可以将 .txt 文件用于模板。