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

2012-01-19 Thread Markus Gattol
you either use your own MTA (e.g. postfix) or you use a third party such as Amazon SES for which there is a Django application: https://github.com/hmarr/django-ses -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the

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

2012-01-19 Thread Nikhil Verma
help you. On Thu, Jan 19, 2012 at 8:15 AM, Chen Xu <xuche...@gmail.com> 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 Deb

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

2012-01-19 Thread Lie Ryan
On 01/19/2012 01:45 PM, Chen Xu wrote: but I dont want to use gmail account to send emails on production. you're leaving one thing out from your question, what do you want to use instead? Check your web host, many webhosts provides smtp service. -- You received this message because you are

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

2012-01-19 Thread Timothy Makobu
Hi, There's Amazon SES http://aws.amazon.com/ses/ On Thu, Jan 19, 2012 at 12:07 PM, Daniel Roseman <dan...@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

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

2012-01-19 Thread Daniel Roseman
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 localhos

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

2012-01-18 Thread Chen Xu
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