Django - Sendgrid如何使用send_mail替换标签

时间:2017-02-15 22:11:55

标签: django sendgrid

我正在查看Sendgrid文档并写入发送电子邮件,这就足够了:

from django.core.mail import send_mail
send_mail('Subject here', 'Here is the message.', 'from@example.com', ['to@example.com'], fail_silently=False)

如果我想使用Sendgrid模板,我在哪里声明我想要使用的模板?此外,Sendgrid的模板中有substitution tags。我怎样才能在django中声明它们?

1 个答案:

答案 0 :(得分:1)

我没有足够的回复评论,但您可能需要考虑使用sendgrid-django,以便轻松使用您的sendgrid模板。