library
turbot/sendgrid
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Send Mail

Send email over SendGrid.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run sendgrid.pipeline.send_mail \
--arg 'to=<string>' \
--arg 'from=<string>' \
--arg 'subject=<string>' \
--arg 'content=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = sendgrid.pipeline.send_mail
args = {
to = <string>
from = <string>
subject = <string>
content = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.sendgrid
YesName of SendGrid connection to use. If not provided, the default SendGrid connection will be used.connection.sendgrid.default
to
string
YesThe intended recipient's email address.-
from
string
YesThe 'From' email address used to deliver the message. This address should be a verified sender in your Twilio SendGrid account.-
subject
string
YesThe global or 'message level' subject of your email.-
content
string
YesThe body of the email.-

Outputs

This pipeline has no outputs.

Tags

recommended = true