library
turbot/sendgrid
OverviewPipelines
0
Triggers
0
Variables
GitHub

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
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
tostringYesThe intended recipient's email address.-
fromstringYesThe 'From' email address used to deliver the message. This address should be a verified sender in your Twilio SendGrid account.-
subjectstringYesThe global or 'message level' subject of your email.-
contentstringYesThe body of the email.-

Outputs

This pipeline has no outputs.

Tags

type = featured