Skip to content Skip to sidebar Skip to footer

Outlook 2010 And Python Email Smtplib - Info In Proper Fields

When trying to send mail through Outlook 2010 with smtplib in Python 2.6.5, I at least encounter success sending the message, but s.sendmail(FROM, TO, message) is not putting the i

Solution 1:

Try s.set_debuglevel(1) to check what is going on.

The code looks ok.

You may be rejected on SMTP:

smtplib.SMTPRecipientsRefused: {'example@amail.com': (550, b'5.7.1 Unable to relay')}

Post a Comment for "Outlook 2010 And Python Email Smtplib - Info In Proper Fields"