我正在查看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中声明它们?