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

NameLabelTypeControl TypeDescriptionRequired
usernameUsernameSTRINGTEXTtrue
passwordPasswordSTRINGTEXTtrue

Actions

Send

Name: send

Send an email to any address.

Properties

NameLabelTypeControl TypeDescriptionRequired
fromFrom EmailSTRINGTEXTFrom who to send the email.true
toTo EmailARRAY
Items [STRING]
ARRAY_BUILDERWho to send the email to.true
ccCC EmailARRAY
Items [STRING]
ARRAY_BUILDERWho to CC on the email.null
bccBCC EmailARRAY
Items [STRING]
ARRAY_BUILDERWho to BCC on the email.null
replyToReply ToARRAY
Items [STRING]
ARRAY_BUILDERWhen someone replies to this email, where should it go to?null
subjectSubjectSTRINGTEXTYour email subject.true
contentContentSTRINGRICH_TEXTYour email content. Will be sent as a HTML email.null
attachmentsAttachmentsARRAY
Items [FILE_ENTRY]
ARRAY_BUILDERA 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"
}