Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.06 KB

sendgrid.md

File metadata and controls

56 lines (39 loc) · 1.06 KB
description
Seamlessly integrate SendGrid with your favorite APIs, databases, and programming languages, using WayScript.

SendGrid

SendGrid Email API

🔐 Authentication

Click 'Add an Account' and enter a name for your Key and your SendGrid API Key.

📧 Simple Email

The simple email function allows you to send 'simple emails'. The Email Body TextArea accepts HTML.

Advanced

You can change the content type from HTML (text/html) to plaintext (text/plain)

📩 Custom Input (Advanced)

SendGrid can accept highly custom email inputs. You are able to pass a Struct Variable to SendGrid with any data you want.

Sample Input Format:

{
  "personalizations": [
    {
      "to": [
        {
          "email": "[email protected]"
        }
      ],
      "subject": "Sending with SendGrid is Fun"
    }
  ],
  "from": {
    "email": "[email protected]"
  },
  "content": [
    {
      "type": "text/plain",
      "value": "and easy to do anywhere, even with Python"
    }
  ]
}