Skip to content

Instantly share code, notes, and snippets.

@swdevbali
Created May 25, 2017 18:19
Show Gist options
  • Save swdevbali/ff00547b8e60a2862fb6360ca6fb01fd to your computer and use it in GitHub Desktop.
Save swdevbali/ff00547b8e60a2862fb6360ca6fb01fd to your computer and use it in GitHub Desktop.
Send email using Google Client API
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