Sarmad George schrieb:

> msg = "Hello World"

Your sending your message without any headers (no subject etc). So
probably your message lands in the recipients spam folder.

Try:
msg = """To: recipi...@example.com
Subject: hello world

Hello there"""


The blank line between the headers and the body is important!

Also make sure to use a sender address that is allowed to send through
your smtp relay. yahoo.com sender is probably a bad idea. Check your
Yahoo Inbox, you might even have a bounce message there telling you that
the final mail server didn't accept your message.

-- 
http://mail.python.org/mailman/listinfo/python-list
  • SMTP Sarmad George
    • Re: SMTP Gabriel Genellina
    • Re: SMTP Oli Schacher

Reply via email to