Skip to content

Email

The Email connector sends emails using an SMTP email server.

Categories: communication, helpers

Type: email/v1


Connections

Version: 1

Basic Auth

Properties

NameLabelTypeDescriptionRequired
usernameUsernameSTRINGtrue
passwordPasswordSTRINGtrue

Actions

Send

Name: send

Send an email to any address.

Properties

NameLabelTypeDescriptionRequired
fromFrom EmailSTRINGFrom who to send the email.true
toTo EmailARRAY
Items [STRING]
Who to send the email to.true
ccCC EmailARRAY
Items [STRING]
Who to CC on the email.null
bccBCC EmailARRAY
Items [STRING]
Who to BCC on the email.null
replyToReply ToARRAY
Items [STRING]
When someone replies to this email, where should it go to?null
subjectSubjectSTRINGYour email subject.true
contentContentSTRINGYour email content. Will be sent as a HTML email.null
attachmentsAttachmentsARRAY
Items [FILE_ENTRY]
A list of attachments to send with the email.null

Example JSON Structure

{
"label" : "Send",
"name" : "send",
"parameters" : {
"from" : "",
"to" : [ "" ],
"cc" : [ "" ],
"bcc" : [ "" ],
"replyTo" : [ "" ],
"subject" : "",
"content" : "",
"attachments" : [ {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
} ]
},
"type" : "email/v1/send"
}

Output

This action does not produce any output.