Resend
Resend is the email API for developers.
Categories: marketing-automation
Type: resend/v1
Connections
Version: 1
Bearer Token
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
token | Token | STRING | TEXT | true |
Actions
Send Email
Name: sendEmail
Send an email
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
from | From | STRING | Sender email address. | true | |
to | To | ARRAY Items[STRING($email)] | ARRAY_BUILDER | Recipients email addresses. | true |
subject | Subject | STRING | TEXT | Email subject. | true |
bcc | Bcc | ARRAY Items[STRING($email)] | ARRAY_BUILDER | Bcc recipients email addresses. | false |
cc | Cc | ARRAY Items[STRING($email)] | ARRAY_BUILDER | Cc recipients email addresses. | false |
reply_to | Reply To | ARRAY Items[STRING($email)] | ARRAY_BUILDER | Reply-to email addresses. | false |
contentType | Content Type | STRING OptionsHTML, TEXT | SELECT | true | |
html | HTML | STRING | RICH_TEXT | The HTML version of the message. | false |
text | Text | STRING | TEXT_AREA | The plain text version of the message. | false |
headers | Headers | OBJECT Properties{} | OBJECT_BUILDER | Custom headers to add to the email. | false |
attachments | Attachments | ARRAY Items[FILE_ENTRY] | ARRAY_BUILDER | A list of attachments to send with the email. | false |
tags | ARRAY Items[{STRING(name), STRING(value)}] | ARRAY_BUILDER | false |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
id | STRING | TEXT |
JSON Example
{ "label" : "Send Email", "name" : "sendEmail", "parameters" : { "from" : "", "to" : [ "" ], "subject" : "", "bcc" : [ "" ], "cc" : [ "" ], "reply_to" : [ "" ], "contentType" : "", "html" : "", "text" : "", "headers" : { }, "attachments" : [ { "extension" : "", "mimeType" : "", "name" : "", "url" : "" } ], "tags" : [ { "name" : "", "value" : "" } ] }, "type" : "resend/v1/sendEmail"}