marjory-logo

Gmail v3.0.0

Limited Use Requirements

App’s use and transfer of information received from Google APIs to any other app will adhere to Google API Services User Data Policy, including the Limited Use requirements.

Table of Contents


Actions

Send Message

Send a message to recipients

Inputs

{
  "from": "example@example.com", /*The sender email. Can be different from your signed-in account only if you've connected another email account to your main account or if you have permissions to impersonate it(required)*/
  "subject": "Hello", /*The subject of the message(required)*/
  "body": "# Hello World !", /*The markdown version of the message(required)*/
  "attachments": [ /*Files to send with the message*/
    {
      "id": "string",
      "name": "string",
      "contentType": "string",
      "link": "string",
      "size": "number",
      "lastModified": "string",
    }
  ]
  "headers": {
    "string": "string",
  }
  "recipients": [ /*(required)*/
    {
      "to": "string",
      "type": "to | cc | bcc",
      "name": "string",
    }
  ]
}

Outputs

Http Code 200
"No content"
Http Code 500
{
    "message": "string"
}

Events

Check refresh token

Check refresh token

Payload

{
  "foo": "string",
}

Message Received

Message received

Payload

{
  "from": "string",
  "subject": "string",
  "body": "string",
  "attachments": [
    {
      "id": "string",
      "name": "string",
      "contentType": "string",
      "link": "string",
      "size": "number",
      "lastModified": "string",
    }
  ]
  "recipients": [
    {
      "to": "string",
      "type": "to | cc | bcc",
      "name": "string",
    }
  ]
}
Version(s)
3.0.0