Re: Email List

2016-07-19 Thread James Schneider
> Would then the suggested route be to export my email list via an admin action and use this list via Sendmail? > You can do this via a custom management command. https://docs.djangoproject.com/en/1.9/howto/custom-management-commands/ If you do go this route, though, I would suggest looking at a

Re: Email List

2016-07-18 Thread 'David Turner' via Django users
Hello Thanks for this. Would then the suggested route be to export my email list via an admin action and use this list via Sendmail? On 18 July 2016 at 15:11, Shem Nashon wrote: > Integrating email to django is a good but complex feature, My advice if > you want your emails in the inbox and no

Re: Email List

2016-07-18 Thread Shem Nashon
Integrating email to django is a good but complex feature, My advice if you want your emails in the inbox and not spam box of your subscribers is to user sendgrid email gateway, they have a python sdk as well as a REST api that takes json, see https://sendgrid.com/docs/API_Reference/SMTP_API/i

Re: Email List

2016-07-18 Thread Fred Stluka
David, There may be a package that does it all for you.  But if not, you can create a model that stores email addresses and send to those addresses via the Django mail package.  See docs at: - https://docs.djangoproject.com/en/dev/topics/email/