You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
During development is easier to make tests sending the emails to stdout, instead of using a real SMTP server so it would be beneficial to be able to change it.
Describe the solution you'd like
Add a configuration variable called EMAIL_BACKEND which defaults to indico.vendor.django_mail.backends.smtp.EmailBackend.
Is really a small change; I already have it working in my fork.
The text was updated successfully, but these errors were encountered:
Any reason against using maildump as a "real" SMTP server as suggested in the dev setup docs? This is much more convenient to read the emails sent to it than just dumping raw mail content to stdout.
Yeah, but that would add aditional dependiencies and I would have to read even more docs before starting to make changes which have nothing to do with emails. So I thought it was overkill to use yet another tool when I could just dump them in console for now like I would do with Django.
Is your feature request related to a problem? Please describe.
During development is easier to make tests sending the emails to stdout, instead of using a real SMTP server so it would be beneficial to be able to change it.
Describe the solution you'd like
Add a configuration variable called
EMAIL_BACKEND
which defaults toindico.vendor.django_mail.backends.smtp.EmailBackend
.Is really a small change; I already have it working in my fork.
The text was updated successfully, but these errors were encountered: