Sendgrid
Trusted for reliable email delivery at scale.
Categories: communication, marketing-automation
Type: sendgrid/v1
Connections
Version: 1
Bearer Token
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
token | Token | STRING | true |
Actions
Send Email
Name: sendEmail
Sends an email.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
from | From | STRING | Email address from which you want to send. | true |
to | To | ARRAY Items[STRING] | Email addresses which you want to send to. | true |
cc | CC | ARRAY Items[STRING] | Email address which receives a copy. | false |
subject | Subject | STRING | Subject of your email | true |
text | Message Body | STRING | This is the message you want to send | true |
type | Message Type | STRING Optionstext/plain, text/html | Message type for your content | true |
attachments | Attachments | ARRAY Items[FILE_ENTRY] | A list of attachments you want to include with the email. | false |
Example JSON Structure
{ "label" : "Send Email", "name" : "sendEmail", "parameters" : { "from" : "", "to" : [ "" ], "cc" : [ "" ], "subject" : "", "text" : "", "type" : "", "attachments" : [ { "extension" : "", "mimeType" : "", "name" : "", "url" : "" } ] }, "type" : "sendgrid/v1/sendEmail"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
type | STRING | |
from | STRING | |
to | ARRAY Items[STRING] | |
subject | STRING | |
text | STRING | |
attachments | ARRAY Items[FILE_ENTRY] |
Output Example
{ "type" : "", "from" : "", "to" : [ "" ], "subject" : "", "text" : "", "attachments" : [ { "extension" : "", "mimeType" : "", "name" : "", "url" : "" } ]}