Join us

Send Emails with Gmail API

Gmail is one of the most popular email services so far, and you will very probably want to use it as a mailbox for your web or mobile app. It is safe and credible, which is crucial to prevent your emails from going into the spam folder. That’s why we decided to flesh out how to send emails with Gmail API.

Gmail API – why you should consider using it

The API provides you with a RESTful access to the features you usually have with Gmail:

  • Send and receive HTML emails
  • Send and receive emails with attachments
  • CRUD (create, read, update, and delete) operations with messages, drafts, threads, and labels 
  • Access control of your Gmail inbox
  • Full search capabilities of the web UI
  • Perform specific queries 
  • And many more…

Developers love Gmail API because it’s easy to implement. We’ll talk about that a bit later. Also, you can use this option for versatile cases like:

  • automated email sending
  • mail backup
  • mail migration from other email services

Resource types and methods

With Gmail API, you can deal with several resource types and manage them using the following methods:

Resource type Method
Draft
an unsent message that you can modify once created
- create (creating a new draft)
- delete (removing the specified draft)
- get (obtaining the specified draft)list (listing drafts in the mailbox)
- send (sending the specified draft according to the To, Cc, and Bcc headers)
- update (updating the specified draft’s content)
Message
an immutable resource that you cannot modify
- batchDelete (removing messages by message ID)
- batchModify (modifying labels on the specified messages)
- delete (removing the specified message)
- get (obtaining the specified message)
- import (importing the message into the mailbox (similar to receiving via SMTP))
- insert (inserting the message into the mailbox (similar to IMAP)
- list (listing messages in the mailbox)
- modify (modifying labels on the specified message)
- send (sending the specified message according to the To, Cc, and Bcc headers)
- trash (transferring the specified message to the trash)
- untrash (transferring the specified message from the trash)
Thread
a collection of messages within a single conversation
- delete (removing the specified thread)get (obtaining the specified thread)
- list (listing threads in the mailbox)modify (modifying labels in the thread)
- trash (transferring the specified thread to the trash)
- untrash (transferring the specified thread from the trash)
Label
a resource to organize messages and threads (for example, inbox, spam, trash, etc.)
- create (creating a new label)
- delete (removing the specified label)
- get (obtaining the specified label)
- list (listing labels in the mailbox)
- patch (patching the specified label) – this method supports patch semantics
- update (updating the specified label).
History
a collection of changes made to the mailbox
- list (listing the history of all changes to the mailbox)
Settings
setting up Gmail features
- getAutoForwarding (auto-forwarding setting)
- updateAutoForwarding (updating the auto-forwarding setting)
- getImap (IMAP settings)
- updateImap (updating IMAP settings)
- getLanguage (language settings)
- updateLanguage (updating language settings)
- getPop (POP3 settings)
- updatePop (updating POP3 settings)
- getVacation (vacation responder settings)
- updateVacation (updating vacation responder settings)

How to make your app send emails with Gmail API

Step 1: Create a project at Google API Console

If you want to have access to your Gmail from your mobile or web app, you should start with Google Developers Console. Those who visit this page for the first time ever will have to agree with the Terms of Service and pick their Country of residence. Then click Select a project and create a new one. 

Name your new project and press Create at the bottom. 

Step 2: Enable Gmail API

Once that’s done, you can press the Library tab on the left and find yourself in the API Library page. Enter “Gmail API” in the search bar and click on it once found. Now, you need to enable the API for your project. 

Note that you’ll have to enable it separately for each new project you work on. 

Step 3: Credentials and authentication with OAuth 2.0

Once the API is enabled, you’ll be taken to a nice dashboard that says, “To use this API, you may need credentials”. If you click Create credentials, you’ll have to pass through a set of questions to find out what kind of credentials you need. We advise you to go another way since we already know what it is: OAuth client ID. So, click the Credential tab on the left, and then pick OAuth client ID from the drop-down list of the Create Credentials button. 

You’ll see the Configure consent screen button. It will bring you to a page with many fields. You can just enter the name of your app and specify authorized domains. Fill in other fields if you want. 

Click save and then pick the type of your app (web app, Android, Chrome App, iOS, or other). After that, name your OAuth Client ID. Also, enter JavaScript origins and redirect domains for use with requests from a browser or a web server respectively. Click create to finalize. That’s it. Download a JSON file with your credentials – you’ll need it later.

Step 4: Pick a quickstart guide 

The next step is to select a quickstart guide according to the technology your app is built with. So far, there are the following options:

For mobile apps, there are G Suite APIs for iOS and Android as well. 

What you need first in this quickstart guide is the Prerequisites section. Let’s say your choice is PHP. In this case, make sure your PHP version corresponds to the given one. Also, install the JSON extension and the Composer dependency management tool if you haven’t already. After that, you can install the Google Client Library. For Java, you’ll need to create a new project structure and the src/main/resources/ directory. Then, copy the JSON file with credentials to this directory and replace the content of the build.gradle file with this code. So, pay attention when preparing your project. 

Step 5: API client library

Google provides client libraries to work with the API:

API client for Go

Step 6: Access to Gmail

In this step, we need to authorize access to your Gmail account from the app, and then you’ll be able to manage emails. For this, you need to create a file in your working directory. Below you’ll find the specific file names for each technology. Copy-paste a corresponding code sample from the chosen Quickstart Guide and run it. Here are the links to the code samples:

Go

  • Filename: quickstart.go
  • Directory: gmail/quickstart/
  • Code sample for Go
  • Run with: go run quickstart.go

Java

Ruby

.NET

  • Filename: GmailQuickstart.cs
  • Directory: gmail/GmailQuickstart/
  • Code sample for .NET
  • Run by clicking Start in the Visual Studio toolbar

Node.js

PHP

  • Filename: quickstart.php
  • Directory: gmail/quickstart/
  • Code sample for PHP
  • Run with: php quickstart.php

Python

JavaScript (browser)

  • Filename: index.html
  • Directory: gmail/quickstart/
  • Code sample for browser (JavaScript)
  • Replace <YOUR_CLIENT_ID> with your client ID and <YOUR_API_KEY> with your API key. Run with:
  • python -m SimpleHTTPServer 8000 – for Python 2+
  • python -m http.server 8000 – for Python 3+

It worked…or not. Google will warn you about a probable failure of the sample you run to open a new window in your default browser. If this happens, you’ll need to do it manually. Copy the URL from the console and paste it in the browser. It will look like this:

Next, you’ll be asked to either log into your Google account or select one account for authorization. Press allow and you’ll see all your inbox labels in the SSH shell like this:

Congrats! Gmail API works and you can send your first email.

Step 7: Create an email

To send a message, first you need to create one. For this, your app can use the drafts.create method which includes:

  • Creation of a MIME message
  • Conversion of the message into a base64url encoded string
  • Creation of a draft

Let’s see how this is done in practice with Python:

and PHP

Step 8: Send an email

Once you have created your message, you can either call messages.send or drafts.send to send it. Here is how it may look:

Python

and PHP

Step 8.1: Send an email with attachments

You can also create and send a multi-part MIME message. For example, this is how it looks with Python:

Step 9: Read a specific email from your inbox

It would be weird if you can’t use the API to read messages from Gmail. Luckily you can by using the get method by the message ID. Here is how it may look in a Python app:

If the message contains an attachment, expand your code with the following:

Why is Gmail API better or worse than traditional SMTP? 

Email protocol used

Simple Mail Transfer Protocol (SMTP) is a set of rules for sending emails either from the sender to the email server or between servers. Most email service providers use SMTP to send and POP3/IMAP4 to receive emails. To learn more about these protocols, you can read our IMAP vs. POP3 vs. SMTP blog post. Google also provides the Gmail SMTP server as a free SMTP service. Application Programming Interface (API) is an interaction channel used by apps, platforms, and codes to reach each other. With Gmail API, you can send emails using only HyperText Transfer Protocol (HTTP), a set of rules that defines how messages are formatted and transmitted.

How are emails sent?

You can call the API from the app to communicate with an email service that is used to send emails from another server. 

For SMTP, a client establishes a TCP connection to the SMTP server and transfers an email. After authorization, the server sends the email to the recipient’s SMTP server, which, in turn, forwards it to the IMAP4 or POP3 server. Client and server communicate with each other using SMTP commands and responses.

Authentication

Gmail API uses open authentication (Oauth2), which only lets you request the scope of access you need. SMTP provides full access to the account using client login and password SMTP authentication.

Quota

The usage limit of Gmail API is one billion quota units per day. Each method requires a particular number of quota units. For example, a drafts.create is 10 units and a messages.send is 100 units. Gmail API enforces standard daily mail sending limits. Also, keep in mind that the maximum email size in Gmail is 25MB.

SMTP or API?

Each option has its own pros and cons. SMTP is a widely adopted and easy-to-set-up solution to send emails. Moreover, you don’t need any coding skills to handle stuff. Also, you can benefit from using a fake SMTP server such as Mailtrap as a playground for safe email testing.

Besides, it is a great option to automate processes and provide a wide range of functionality for the app. Also, API can boast an extra level of security, which is crucial if you deal with sending sensitive data in emails.

If you want to use email API with easy onboarding process, comprehensive stats and reliable support, try Mailtrap Email API.

I hope you enjoyed reading our guide on how to send emails with Gmail API using GoLang, PHP, Python, JavaScript and more that was originally published on Mailtrap blog.


Only registered users can post comments. Please, login or signup.

Start blogging about your favorite technologies, reach more readers and earn rewards!

Join other developers and claim your FAUN account now!

User Popularity
693

Influence

68k

Total Hits

49

Posts