The Email connector sends emails using an SMTP email server.
Categories: communication, helpers
Type: email/v1
Connections
Version: 1
Basic Auth
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
username | Username | STRING | TEXT | true | |
password | Password | STRING | TEXT | true |
Actions
Send
Name: send
Send an email to any address.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
from | From Email | STRING | TEXT | From who to send the email. | true |
to | To Email | ARRAY Items[STRING] | ARRAY_BUILDER | Who to send the email to. | true |
cc | CC Email | ARRAY Items[STRING] | ARRAY_BUILDER | Who to CC on the email. | null |
bcc | BCC Email | ARRAY Items[STRING] | ARRAY_BUILDER | Who to BCC on the email. | null |
replyTo | Reply To | ARRAY Items[STRING] | ARRAY_BUILDER | When someone replies to this email, where should it go to? | null |
subject | Subject | STRING | TEXT | Your email subject. | true |
content | Content | STRING | RICH_TEXT | Your email content. Will be sent as a HTML email. | null |
attachments | Attachments | ARRAY Items[FILE_ENTRY] | ARRAY_BUILDER | A list of attachments to send with the email. | null |
JSON Example
{ "label" : "Send", "name" : "send", "parameters" : { "from" : "", "to" : [ "" ], "cc" : [ "" ], "bcc" : [ "" ], "replyTo" : [ "" ], "subject" : "", "content" : "", "attachments" : [ { "extension" : "", "mimeType" : "", "name" : "", "url" : "" } ] }, "type" : "email/v1/send"}