我设置了一个系统 Django/Celery/Redis。我使用 EmailMultiAlternatives 发送我的 HTML 和文本电子邮件。
当我在请求过程中发送电子邮件时,电子邮件以 HTML 格式发送。一切运行良好,它围绕着一个功能。这是代码:
def send_email(email, email_context={}, subject_template='', body_text_template='',
body_html_template='', from_email=settings.DEFAULT_FROM_EMAIL):
# render content
subject = render_to_string([subject_template], context).replace('\n', ' ')
body_text = render_to_string([body_text_template], context)
body_html = render_to_string([body_html_template], context)
# send email
email = EmailMultiAlternatives(subject, body_text, from_email, [email])
email.attach_alternative(body_html, 'text/html')
email.send()
但是,当我尝试将其作为 Celery 任务运行时,如下所示,它只是作为“文本/纯文本”发送。可能是什么问题呢?或者我可以做些什么来了解更多信息?非常感谢任何提示或解决方案。
@task(name='tasks.email_features', ignore_result=True)
def email_features(user):
email.send_email(user.email,
email_context={'user': user},
subject_template='emails/features_subject.txt',
body_text_template='emails/features_body.txt',
body_html_template='emails/features_body.html')