This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # import smtplib for sending and MIMEText to handle html | |
| import smtplib | |
| from email.mime.text import MIMEText | |
| # Create a MIMEText msg and specify html | |
| msg = MIMEText(htmlstring, 'html') | |
| # Add a subject, sender and recipient to the msg | |
| msg['Subject'] = 'My Subject' | |
| msg['From'] = 'from@domain.com' |
NewerOlder