Your Ad Here

Thursday, January 19, 2012

Re: Could someone please give some suggestions about how to set up email sending settings on production.

Hi,

There's Amazon SES http://aws.amazon.com/ses/


On Thu, Jan 19, 2012 at 12:07 PM, Daniel Roseman <daniel@roseman.org.uk> wrote:
On Thursday, 19 January 2012 02:45:09 UTC, Chen Xu wrote:
Hi, everyone:

Could someone please give some suggestions about how to set up email sending settings on production.

I know on local, you can do  either:
python -m smtpd -n -c DebuggingServer localhost:1025

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'

EMAIL_HOST = 'localhost'
EMAIL_PORT = 1025

and then email will be printed on the terminal

or 
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'm...@gmail.com'
EMAIL_HOST_PASSWORD = 'pw'

but I dont want to use gmail account to send emails on production.

Therefore, could someone please help?


Thanks very much
Best regards


--
⚡ Chen Xu

I don't understand the question. You use the settings of whatever your mail server is. If you don't use gmail, presumably you have a different mail server, so use that.
--
DR.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/v3lYi8DTwnIJ.

To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.



--
sent from my two tin cans via hangerwire

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

0 comments:

Post a Comment