Action Types
sendgrid
If you haven’t learned about actions checkout the actions page.
Sends a email to the address specified with the content and subject specified.
typerequired
string = 'sendgrid'
Must equal the string sendgrid
.
integrationId
string
The integrationId
is the id from the integrations page. Technically, this is
optional. If it is left blank, we will send messages from the functionary
sendgrid account. The from
parameter will be over written with
[email protected]
, which will be the sending email address.
argsrequired
object
torequired
templatable string
email address sending to.
fromrequired
templatable string
email address to be sent from.
textrequired
templatable string
the text of the body of the email message.
subjectrequired
templatable string
the subject of the email message.
{
"type": "email",
"args": {
"to": "{{modelProperties.email}}",
"from": "[email protected]",
"subject": "Top 10 Tips to Finish Integration!",
"text": "Hey {{displayName}} -- Hope all is well. - Justin"
}
}
See action for all the accessible properties for templating
We’ll build any action. No questions asked. Just email me at [email protected]