Advanced Email Step
This is an advanced step. Please contact your Customer Success representative in order to get it configured and learn how to use it.
Base Step: Recursive Step
Description: This step is aimed at implementing a variety of more advanced email use cases. A few examples are:
- Sending the same email to multiple people individually (not in CC)
- Sending the same email to mutiple people (in CC)
Example
return [{
contentURL: "s3://{CMS_BUCKET}/{CLIENT_ID}/Operations/email/ContentTemplate/{CONTENT_ID}_en-US.json",
templateURL: "s3://{CMS_BUCKET}/{CLIENT_ID}/Operations/email/Template/{CONTENT_ID}.html",
bundleId: "{CONTENT_ID}",
bundleName: "{CONTENT_NAME}",
emailAddresses: ["{EMAIL_ADDRESS1}"],
locale: "en_US",
type: "sendClientEmail",
},
{
contentURL: "s3://{CMS_BUCKET}/{CLIENT_ID}/Operations/email/ContentTemplate/{CONTENT_ID}_en-US.json",
templateURL: "s3://{CMS_BUCKET}/{CLIENT_ID}/Operations/email/Template/{CONTENT_ID}.html",
bundleId: "{CONTENT_ID}",
bundleName: "{CONTENT_NAME}",
emailAddresses: ["{EMAIL_ADDRESS2}"],
locale: "en_US",
type: "sendClientEmail",
},
{
contentURL: "s3://{CMS_BUCKET}/{CLIENT_ID}/Operations/email/ContentTemplate/{CONTENT_ID}_en-US.json",
templateURL: "s3://{CMS_BUCKET}/{CLIENT_ID}/Operations/email/Template/{CONTENT_ID}.html",
bundleId: "{CONTENT_ID}",
bundleName: "{CONTENT_NAME}",
emailAddresses: ["{EMAIL_ADDRESS3}"],
locale: "en_US",
type: "sendClientEmail",
}];