5

我设置了一个系统 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')
4

2 回答 2

4

Celery 不影响任务的执行结果。更改任务后您是否重新启动了celeryd?celery 重新加载 Python 代码很重要。

当您使用EmailMultiAlternativesandemail.attach_alternative(body_html, 'text/html')时,电子邮件是在 和 中发送的,Content-Type: multipart/alternative;并且text/html是另一种选择,它取决于邮件收据在呈现期间选择邮件的内容类型。那么查看程序和 celery 程序之间的收据是否相同?

您可以直接输出发送邮件,通过python -m smtpd -n -c DebuggingServer localhost:25查找实际邮件。我已经在我的带有 redis 支持的 Celery 的 mac 上进行了测试,从官方文档中获取的示例的输出与预期的相同。

于 2012-07-15T06:31:55.600 回答
0
    from django.core import mail
    from django.template.loader import render_to_string
    from django.utils.html import strip_tags
    
    class SendEmail(Task):
        name="send_email"
        
        def run(self,email):
            subject = 'Daily News Letter'
            html_message = render_to_string('letter.html', {'context': 'values'})
            plain_message = strip_tags(html_message)
            from_email = env('EMAIL_HOST_USER') 
            mail.send_mail(subject, plain_message, from_email, [email], html_message=html_message)
            return None

send_email = celery_app.register_task(SendEmail())
于 2021-09-13T06:19:14.673 回答