scrapinghub / spidermon

Scrapy Extension for monitoring spiders execution.
https://spidermon.readthedocs.io
BSD 3-Clause "New" or "Revised" License
528 stars 96 forks source link

feature: Support for using SMTP as e-mail action #337

Closed rennerocha closed 2 years ago

rennerocha commented 2 years ago

There is already an old open PR for this action: https://github.com/scrapinghub/spidermon/pull/204

Currently we only have the option to send e-mail reports using Amazon SES. If we want to use a different e-mail we have to create our own custom action. Considering that using smtlib to send email is easily configured in the majority of the email providers, a built-in action for that would be a good idea.

We also have a method in Scrapy to help us with that, that can be included: https://docs.scrapy.org/en/latest/topics/email.html

We can use the old PR as reference or create a new one. It is up to the person that will develop this issue.

rennerocha commented 2 years ago

Closed by https://github.com/scrapinghub/spidermon/pull/345