Created
January 6, 2014 15:44
-
-
Save zeuxisoo/8284676 to your computer and use it in GitHub Desktop.
Test in Mailgun
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
| from mailer import Message, Mailer | |
| m = Message() | |
| m.From=“Name <username@gmail.com>" | |
| m.To=“username+fans@gmail.com" | |
| m.BCC=[‘username@live.hk’,’username2@gmail.com'] | |
| m.Subject='Hello world testing' | |
| m.charset="UTF-8" | |
| m.Html = "Testing some things!” | |
| s = Mailer("smtp.mailgun.org", 587, use_tls=True) | |
| s.login('postmaster@mysubdomain.com', ‘password’) | |
| s.send(m) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment