Forum Discussion
4 Replies
- bojanvelevskiValued Contributor
Hi @kandulah,
Sure you can. You’ll need to setup an account, and properly configure an Email Sender snap depending on your logic there.
Be careful, because if you configure the Email Snap to be after the loading of the records, and if you’re updating the records one by one, or in chunks, you will send out an email on every record/chunk.
If you want to send out an email on a pipeline execution, no matter how many records or chunks you process, just place a disconnected Email snap outside the pipeline flow. That will asynchronously send the message.
You could also put a router in the middle similar to the one below (with the first input view being called “standard” and second being “email”). This would make it to where you are only e-mailing every 10,000 documents through the pipeline. Those would still go through the standard path because we have the First match checkbox unchecked.
- kandulahNew Contributor II
Awesome.Thank you @ddellsperger
- kandulahNew Contributor II
Thank you @bojanvelevski