library
turbot/sendgrid
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
cred | string | Yes | Name for credentials to use. If not provided, the default credentials will be used. | default |
to | string | Yes | The intended recipient's email address. | - |
from | string | Yes | The 'From' email address used to deliver the message. This address should be a verified sender in your Twilio SendGrid account. | - |
subject | string | Yes | The global or 'message level' subject of your email. | - |
content | string | Yes | The body of the email. | - |
Outputs
This pipeline has no outputs.
Tags
type = featured