RE: How to send email from django without authenticate smtp server

2024-03-05 Thread Mike Dewhirst
Why don't you use TLS so your connection with the server is encrypted? Port 25 is a bit ancient.--(Unsigned mail from my phone) Original message From: Praveen Chaudhary Date: 5/3/24 04:50 (GMT+10:00) To: django-users@googlegroups.com Subject: How to send email from django

RE: How to send email from django without authenticate smtp server

2024-03-05 Thread Mike Dewhirst
Why don't you use TLS so your connection with the server is encrypted? Port 25 is a bit ancient.--(Unsigned mail from my phone) Original message From: Praveen Chaudhary Date: 5/3/24 04:50 (GMT+10:00) To: django-users@googlegroups.com Subject: How to send email from django

Re: How to send email from django without authenticate smtp server

2024-03-04 Thread jose kj
Ask chatgpt or bard On Mon, 4 Mar, 2024, 11:20 pm Praveen Chaudhary, wrote: > Hello everyone, > > Basically, I want to send the email from django using smtp server. I have > my own smtp server domain host at port 25, but don't want to pass > EMAIL_HOST_USER & EMAIL_HOST_P

How to send email from django without authenticate smtp server

2024-03-04 Thread Praveen Chaudhary
Hello everyone, Basically, I want to send the email from django using smtp server. I have my own smtp server domain host at port 25, but don't want to pass EMAIL_HOST_USER & EMAIL_HOST_PASSWORD. I am using EmailMultiAlernatives to send the html and file, I am unable to send email wit

Re: Failed to send Email by Django

2023-03-24 Thread 'Kasper Laudrup' via Django users
regards, Kasper Laudrup -- 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. To view this discussion on the web vi

Failed to send Email by Django

2023-03-24 Thread bing
in the output. Is there anything wrong? I would be very grateful if someone can give me some advice. Thanks in advance. -- 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, sen

Re: IOError when trying to send email in Django app

2018-05-11 Thread James Farris
OST /password_reset/ (73.49.35.42) > IOError: write error > > What error is this? Why won't the password reset email send? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

IOError when trying to send email in Django app

2018-05-11 Thread Tom Tanner
ord reset email send? -- 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. To post to this group, send email to django

Re: send email using django

2017-08-30 Thread Antonis Christofides
ail using django ,but i giving some authentiaction > problem to gmail account ... > > -- > 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 &

Re: send email using django

2017-08-30 Thread Andréas Kühne
when using some versions of Outlook. Regards, Andréas 2017-08-30 9:41 GMT+02:00 vishnu bhand <bhandvis...@gmail.com>: > I'm trying to send email using django ,but i giving some authentiaction > problem to gmail account ... > > -- > You received this message because you are

send email using django

2017-08-30 Thread vishnu bhand
I'm trying to send email using django ,but i giving some authentiaction problem to gmail account ... -- 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

Re: send email with django

2017-04-20 Thread Christian Ledermann
does Django not email me the 500 > internal server error? > > Regards, > > A. > > Antonis Christofides > http://djangodeployment.com > > On 2017-04-19 00:25, shahab emami wrote: > > hello > > i want to send email using django. i used to send email with pour py

Re: send email with django

2017-04-20 Thread Antonis Christofides
ntonis Christofides http://djangodeployment.com On 2017-04-19 00:25, shahab emami wrote: > hello > > i want to send email using django. i used to send email with pour python > before but now i can't do that in django. > > i have search about this and i have seen some tutorials o

Re: send email with django

2017-04-19 Thread sum abiut
>>>>> SERVER_EMAIL = 'myn...@mypaid-gmail.com' >>>>> ADMINS = [('MyWebServer', 'myn...@mypaid-gmail.com'),] >>>>> >>>>> EMAIL_USE_TLS = True >>>>> EMAIL_HOST = 'smtp-relay.gmail.com' >>>>> EMAIL_PORT = 587 >

Re: send email with django

2017-04-19 Thread shahab emami
.com' >>>> ADMINS = [('MyWebServer', 'myn...@mypaid-gmail.com'),] >>>> >>>> EMAIL_USE_TLS = True >>>> EMAIL_HOST = 'smtp-relay.gmail.com' >>>> EMAIL_PORT = 587 >>>> EMAIL_HOST_USER = '' >>>> EMAIL_HOST_PASSWORD = ''

Re: send email with django

2017-04-19 Thread sum abiut
l.com' >>> EMAIL_PORT = 587 >>> EMAIL_HOST_USER = '' >>> EMAIL_HOST_PASSWORD = '' >>> DEFAULT_FROM_EMAIL = 'myn...@mypaid-gmail.com' >>> DEFAULT_TO_EMAIL = 'myn...@mypaid-gmail.com' >>> >>> Hope this helps! >>> >>> Original

Re: send email with django

2017-04-19 Thread shahab emami
>> EMAIL_HOST = 'smtp-relay.gmail.com' >> EMAIL_PORT = 587 >> EMAIL_HOST_USER = '' >> EMAIL_HOST_PASSWORD = '' >> DEFAULT_FROM_EMAIL = 'myn...@mypaid-gmail.com ' >> DEFAULT_TO_EMAIL = 'myn...@mypaid-gmail.com ' >> >> Hope this helps! >> >&g

Re: send email with django

2017-04-19 Thread Thiago Luiz Parolin
> > EMAIL_USE_TLS = True > EMAIL_HOST = 'smtp-relay.gmail.com' > EMAIL_PORT = 587 > EMAIL_HOST_USER = '' > EMAIL_HOST_PASSWORD = '' > DEFAULT_FROM_EMAIL = 'myn...@mypaid-gmail.com' > DEFAULT_TO_EMAIL = 'myn...@mypaid-gmail.com' > > Hope this helps! > > Or

Re: send email with django

2017-04-19 Thread Carl
= 'smtp-relay.gmail.com' EMAIL_PORT = 587 EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' DEFAULT_FROM_EMAIL = 'myn...@mypaid-gmail.com' DEFAULT_TO_EMAIL = 'myn...@mypaid-gmail.com' Hope this helps! Original Message Subject: Re: send email with django Local Time: April 19, 2017 7:00 AM

Re: send email with django

2017-04-19 Thread shahab emami
ards, > > A. > > Antonis Christofideshttp://djangodeployment.com > > On 2017-04-19 00:25, shahab emami wrote: > > hello > > i want to send email using django. i used to send email with pour python > before but now i can't do that in django. > > i have search about this

Re: send email with django

2017-04-19 Thread Jani Tiainen
Also, don't fail silently it would be helpful to see actual error that happens... On 19.04.2017 00:25, shahab emami wrote: hello i want to send email using django. i used to send email with pour python before but now i can't do that in django. i have search about this and i have seen some

Re: send email with django

2017-04-19 Thread Jani Tiainen
Have you enabled app in Google mail account? You can do that through url https://accounts.google.com/DisplayUnlockCaptcha On 19.04.2017 00:25, shahab emami wrote: hello i want to send email using django. i used to send email with pour python before but now i can't do that in django. i have

Re: send email with django

2017-04-19 Thread Antonis Christofides
-04-19 00:25, shahab emami wrote: > hello > > i want to send email using django. i used to send email with pour python > before but now i can't do that in django. > > i have search about this and i have seen some tutorials on youtube in last > two days but i cant do thi

send email with django

2017-04-18 Thread shahab emami
hello i want to send email using django. i used to send email with pour python before but now i can't do that in django. i have search about this and i have seen some tutorials on youtube in last two days but i cant do this . this is in my settings.py : EMAIL_USE_TLS = True EMAIL_HOST