This action will send an email through SendGrid to the recipient you specify.
- API endpoint slug
- sendgrid.send_email
- Filter code method
- Sendgrid.sendEmail.skip(string?: reason)
- Runtime method
- runAction("sendgrid.send_email", {})
Action fields
- Label
- To
- Helper text
- The recipient's email address.
- Slug
- to
- Required
- true
- Can have default value
- true
- Filter code method
- Sendgrid.sendEmail.setTo(string: to)
- Label
- From
- Helper text
- Must be a verified sender or an address on an authenticated domain in your SendGrid account, or the send is rejected.
- Slug
- from
- Required
- true
- Can have default value
- true
- Filter code method
- Sendgrid.sendEmail.setFrom(string: from)
- Label
- Subject
- Helper text
- The subject line of the email.
- Slug
- subject
- Required
- true
- Can have default value
- true
- Filter code method
- Sendgrid.sendEmail.setSubject(string: subject)
- Label
- Body
- Helper text
- The message body. Plain text or HTML.
- Slug
- body
- Required
- true
- Can have default value
- true
- Filter code method
- Sendgrid.sendEmail.setBody(string: body)