I have the following settings:
EMAIL_HOST = "smtp.gmail.com"
EMAIL_PORT = 465
EMAIL_HOST_USER = MYLOGIN
EMAIL_HOST_PASSWORD = MYPASSWORD
EMAIL_USE_TLS = True

And the mailing part:
  subject = "New data outputs are available"
  recipients = ["m...@here.com"]
  sender = "some...@else.com"
  email = EmailMessage(subject,text,sender,recipients)
  email.send()

And whenever I try to send the mail, I get an error.  "10060 Operation
timed out" on Windows machines, "110 Connection timed out" on a Linux
machine ...

Googling was not really successful.

It worked fine with the send_mail function on two of our machines
(Linux, Django 1.0.2 and Win Django 1.0), but not on a third (Win,
Django 1.0.2 again).
It also works with a different mailserver and EMAIL_USE_TLS = False.

Any ideas?

Thanks a lot,
Katja
--~--~---------~--~----~------------~-------~--~----~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to