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 可以向 Mandrill 发送数据,所以它会处理发送邮件吗?当我使用 SMTP 时,我需要等待页面发送邮件(超过 1000 封邮件)。
我使用 django 框架。
这可能吗?
用密件抄送修复它并保留收件人:
msg = EmailMultiAlternatives(subject, plain_body, from_email, emails, headers={'X-MC-PreserveRecipients': False}) msg.attach_alternative(html_body, "text/html") msg.send()