如何在 Scrapy Spidermon 中使用 Mandrill 发送电子邮件报告
Posted
技术标签:
【中文标题】如何在 Scrapy Spidermon 中使用 Mandrill 发送电子邮件报告【英文标题】:How to use Mandrill to send email report in Scrapy Spidermon 【发布时间】:2019-08-10 02:12:42 【问题描述】:目前,Scrapy Spidermon 扩展仅显示使用 Amazon Simple Email Service 发送电子邮件的示例。可以用 Mandrill 代替吗?怎么做?
【问题讨论】:
如果对您有帮助,请考虑将答案标记为“已接受”:) 【参考方案1】:您必须编写自己的“Mandril Send Email”类。
使用 SendSESEmail
作为起点,但您无需处理 AWS 密钥,而是使用 Mandrill 的凭证。
你send_message
应该看起来像这样:
def send_message(self, message):
s = smtplib.SMTP('smtp.mandrillapp.com', 587)
s.login(MANDRILL_USERNAME, MANDRILL_PASSWORD)
s.send_message(message)
(基于此 sn-p:https://mandrill.com/#script-python)
希望对你有所帮助。
【讨论】:
以上是关于如何在 Scrapy Spidermon 中使用 Mandrill 发送电子邮件报告的主要内容,如果未能解决你的问题,请参考以下文章
如何在python中使用selenium或scrapy单击“下一步”按钮
Scrapy:: 如何在 CSS 选择器中使用“not”来跳过元素