This document explains how to create, update, and send draft emails using the Gmail API.
Email drafts represent unsent messages with the DRAFT system label applied.
The message contained within the draft cannot be edited once created, but it can
be replaced. In this sense, the
drafts resource is a
container that provides a stable ID because the underlying message IDs change
every time the message is replaced.
The messages resource
inside a draft has similar behavior to other messages except for the following
differences:
- Draft messages cannot have any label other than the
DRAFTsystem label. - When the draft is sent, the draft is automatically deleted and a new message
with an updated ID is created with the
SENTsystem label. This message is returned in thedrafts.sendmethod response.
Create drafts
Your app can create drafts using the
drafts.create
method. To create a draft:
- Create a MIME message that complies with RFC 2822.
- Convert the message to a base64URL encoded string.
- Call the
drafts.createmethod, setting the value of themessages.rawfield to the encoded string.
The following code samples demonstrate the process:
Java
Python
cURL
curl --request POST \
'https://gmail.googleapis.com/gmail/v1/users/me/drafts' \
--header 'Authorization: Bearer ACCESS_TOKEN" \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{"message":{"raw":"MESSAGE"}}'
Replace the following:
- ACCESS_TOKEN: the access token that grants access to the API.
- MESSAGE: the RFC 2822 formatted MIME message, encoded as base64URL.
Update drafts
Similar to creating a draft, to update a draft you must supply a drafts
resource in the body of your request with the messages.raw field set to a
base64URL encoded string containing the MIME message. Because messages cannot be
updated, the message contained in the draft is destroyed and replaced by the new
MIME message supplied in the update request.
You can retrieve the current MIME message contained in the draft by calling the
drafts.get method
with the query parameter format=raw.
For more information, see the
drafts.update
method.
Send drafts
When sending a draft, you can send it as-is, or you can provide updates in the send request.
To update the draft when sending, supply a drafts resource in the request body
of the drafts.send
method. In the drafts resource, you must specify the draft
id of
the draft to be sent and set the messages.raw field to the new MIME message
encoded as a base64URL string.
For information on sending a Gmail message, see Send messages.