SEND_EMAIL_SENDGRID

Send an email using SendGrid.

icon of SendGridSendGrid
Not a big fan of functions?
Use the Actions Wizard to configure any action in Rows without functions.

Parameter List

Syntax
SEND_EMAIL_SENDGRID(fromto
[subject]
[content]
[bcc]
[reply_to]
)
from

The email of the sender. For example: "john@doe.com".

to

One or more email address to send the email to. For example: "jane@doe.com" or "jim@doe.com,mary@doe.com".

[optional] subject

The subject of the email. For example: "Built an app with a spreadsheet!".

[optional] content

The content body to send. For example: "How cool is this!?". The content can be formated in HTML.

[optional] bcc

One or more email addresses to send a blind carbon copy to. For example: "ryan@doe.com" or "ryan@doe.com,sarah@doe.com".

[optional] reply_to

The email address the recipient can send a reply to. For example: "replies@doe.com".

Examples

SEND_EMAIL_SENDGRID("joe@email.com", "jane@email.com,ryan@email.com,bob@email.com", "Alert!", "Your <b>email</b> arrived!", "jimmy@email.com", "reply-to@email.com") returns sends an email to Jane, Ryan, and Bob.