Workflow 3: Send an e-mail
Basic Concepts
Create a template for your email
Dear {{@inputs.first_name}},
Your blood pressure measurement of {{@inputs.date}} was analyzed. The analysis is attached to this email.
Kind regards,
The team{
"description": "Template used to send an analysis email",
"inputs": {
"first_name": {
"type": "string"
},
"date": {
"type": "string"
}
},
"outputs": {
"subject": "Your measurement of $content.date was analyzed!"
}
}Update your function to trigger an email
Sync template & task via the CLI
Try it out!
Last updated