[SalesForce] trigger send thank you email when a new subscriber is added to the list -exacttarget

Landing page containing form ->customer submit –> new subscriber is created in list.

I want NOW to now send the triggered send thank you email confirmation to the newly added subscriber.

The landing page processing form contains API AMPscript …

any pointers?

Best Answer

  1. Create a checkbox field on the subscriber record
  2. Create a workflow rule to fire on insert and every time updated and checkbox field in #1 is FALSE
  3. Add email alert to send email and field update to set the checkbox field in #1 to true

This will send an email alert to the email address associated with the record (you define) and then check the checkbox so it does not get sent the next time the record is updated. You can force a resend by unchecking the checkbox as well.

Related Topic