Created
May 25, 2017 18:19
-
-
Save swdevbali/ff00547b8e60a2862fb6360ca6fb01fd to your computer and use it in GitHub Desktop.
Send email using Google Client API
This file contains 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 gclient | |
from_ = '[email protected]' | |
to_ = '[email protected]' | |
title = 'Python vs Ruby vs Go' | |
body = 'Python FTW!' | |
message = gclient.create_message(from_, to_, title, body) | |
gclient.send(message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment