Skip to content

Commit

Permalink
Merge pull request #745 from agrare/add_sample_email_asl
Browse files Browse the repository at this point in the history
Fix Parameters missing `.$` in email.asl
  • Loading branch information
Fryguy authored May 3, 2024
2 parents a3fbf0c + b3ae05d commit 150ff56
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions content/workflows/email.asl
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"Type": "Task",
"Resource": "builtin://email",
"Parameters": {
"To": "$.to",
"From": "$.from",
"Subject": "$.subject",
"Cc": "$.cc",
"Bcc": "$.bcc",
"Body": "$.body",
"Attachment": "$.attachment"
"To.$": "$.to",
"From.$": "$.from",
"Subject.$": "$.subject",
"Cc.$": "$.cc",
"Bcc.$": "$.bcc",
"Body.$": "$.body",
"Attachment.$": "$.attachment"
},
"End": true
}
Expand Down

0 comments on commit 150ff56

Please sign in to comment.