Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production SMTP settings are not ideal. #21

Open
pydanny opened this issue Feb 26, 2013 · 1 comment
Open

Production SMTP settings are not ideal. #21

pydanny opened this issue Feb 26, 2013 · 1 comment

Comments

@pydanny
Copy link
Member

pydanny commented Feb 26, 2013

Our current method:

# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-host
# TODO - gmail should not be the default. What's a better option?
EMAIL_HOST = environ.get('EMAIL_HOST', 'smtp.gmail.com')

# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-host-password
# TODO - should we provide list of possible email providers like sendgrid and mailgun?
EMAIL_HOST_PASSWORD = environ.get('EMAIL_HOST_PASSWORD', '')

# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-host-user
# TODO - should we provide list of possible email providers like sendgrid and mailgun?
EMAIL_HOST_USER = environ.get('EMAIL_HOST_USER', '')

Are Sendgrid, Mailgun, or other email providers interested in getting involved?

@dashmug
Copy link

dashmug commented Jun 13, 2014

I, for one, use Mailgun. It would also be nice to provide them but maybe just commented out by default.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants