Skip to content

Instantly share code, notes, and snippets.

@basnijholt
Created September 20, 2016 22:13
Show Gist options
  • Save basnijholt/e756225f7e699aabb684817e6185050a to your computer and use it in GitHub Desktop.
Save basnijholt/e756225f7e699aabb684817e6185050a to your computer and use it in GitHub Desktop.
import httplib2
import os
from apiclient import discovery
import oauth2client
import argparse
import base64
from email.mime.text import MIMEText
flags = argparse.ArgumentParser(
parents=[oauth2client.tools.argparser]).parse_args()
SCOPES = 'https://mail.google.com/'
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Gmail API Python Quickstart'
def get_credentials():
"""Gets valid user credentials from storage.
If nothing has been stored, or if the stored credentials are invalid,
the OAuth2 flow is completed to obtain the new credentials.
Returns:
Credentials, the obtained credential.
"""
home_dir = os.path.expanduser('~')
credential_dir = os.path.join(home_dir, '.credentials')
if not os.path.exists(credential_dir):
os.makedirs(credential_dir)
credential_path = os.path.join(credential_dir,
'mail-script.json')
store = oauth2client.file.Storage(credential_path)
credentials = store.get()
if not credentials or credentials.invalid:
flow = oauth2client.client.flow_from_clientsecrets(
CLIENT_SECRET_FILE, SCOPES)
flow.user_agent = APPLICATION_NAME
if flags:
credentials = oauth2client.tools.run_flow(flow, store, flags)
print('Storing credentials to ' + credential_path)
return credentials
def get_service():
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
service = discovery.build('gmail', 'v1', http=http)
return service
def create_message(sender, to, subject, message_text):
"""Create a message for an email.
Args:
sender: Email address of the sender.
to: Email address of the receiver.
subject: The subject of the email message.
message_text: The text of the email message.
Returns:
An object containing a base64url encoded email object.
"""
message = MIMEText(message_text)
message['to'] = to
message['from'] = sender
message['subject'] = subject
return {'raw': base64.urlsafe_b64encode(message.as_string().encode('utf-8'))}
def send_message(message):
"""Send an email message.
Args:
can be used to indicate the authenticated user.
message: Message to be sent.
Returns:
Sent Message.
"""
service = get_service()
message = service.users().messages().send(userId='me', body=message).execute()
print('Message Id: %s' % message['id'])
return message
if __name__ == '__main__':
message = create_message(sender='basnijholt@gmail.com',
to='basnijholt@gmail.com',
subject='Test', message_text='Text')
send_message(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment