Re: Sending mail using smtp server

2015-10-02 Thread Robert librado
when ive used this method ive experience errors the port 587 seems to have issues. could you post some basic code. that would work for anybody please thanks email me back djangocharm2...@gmail.com thanks On Monday, September 28, 2015 at 5:56:42 PM UTC-5, Rajat Singh wrote: > > I want to kno

Re: Sending mail using smtp server

2015-09-28 Thread François Schiettecatte
You going to need to set EMAIL_USE_TLS = True, and EMAIL_PORT = 587. And you will need to set "Allow less secure apps: ON” on: https://myaccount.google.com/security?hl=en because Google uses OAUTH (I think) and it is beyond the standard SMTP client (to the best of my recollection) Fr

Re: Sending mail using smtp server

2015-09-28 Thread Mike Dewhirst
Rajat In your settings.py file you need to tell Django about your mail server like this ... EMAIL_HOST = EMAIL_PORT = EMAIL_HOST_USER = EMAIL_HOST_PASSWORD = https://docs.djangoproject.com/en/1.7/topics/email/ On 29/09/2015 5:07 AM, Rajat Singh wrote: I want to know the how to send mail u

Sending mail using smtp server

2015-09-28 Thread Rajat Singh
I want to know the how to send mail using google smtp server in django -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.