使用 python 使用 bcc 发送邮件
我正在使用 django,我需要向许多电子邮件发送邮件,我想使用像 python-mailer 这样的高级库来执行此操作,但我需要使用密件抄送字段,有什么建议吗?
I'm working with django, i need send a mail to many emails, i want to do this with a high level library like python-mailer, but i need use bcc field, any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该看看django里面的EmailMessage类,支持bcc。
完整文档可在此处获取:
http://docs.djangoproject.com/en/dev /topics/email/#the-emailmessage-class
快速概述:
EmailMessage 类使用以下参数进行初始化(如果使用位置参数,则按照给定的顺序)。所有参数都是可选的,可以在调用 send() 方法之前随时设置。
You should look at the EmailMessage class inside of django, supports the bcc.
Complete docs availble here:
http://docs.djangoproject.com/en/dev/topics/email/#the-emailmessage-class
Quick overview:
The EmailMessage class is initialized with the following parameters (in the given order, if positional arguments are used). All parameters are optional and can be set at any time prior to calling the send() method.