Add a end date within the email drip campaign | Community
Skip to main content
Frank_Breen2
New Participant
May 6, 2016
Solved

Add a end date within the email drip campaign

  • May 6, 2016
  • 1 reply
  • 1348 views

We have a 30 day trial drip campaign created, but in the email body the team wants to add the date that trial ends, something like this:

After <<End date>> your applications will be stopped...

Any idea on how to implement, people can fill the form out anytime so need a way to find the date when the form was filled out and add 30 days, then input that date into my email body. Any suggestions?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Grégoire_Miche2

Hi Frank,

2 methods:

  • Add a field, call it "trial end date" and populate it with a data value change in the fills out form trigger campaign. New value: {{system.date}} + 30. Yo will be able to instert that end date in a token in the emails.
  • Add a field, call it "trial start date" and populate it with a data value change in the fills out form trigger campaign. New value: {{system.date}}, then use a script token to compute the end date and insert that script token in the emails.

-Greg

1 reply

Grégoire_Miche2
Grégoire_Miche2Accepted solution
New Participant
May 6, 2016

Hi Frank,

2 methods:

  • Add a field, call it "trial end date" and populate it with a data value change in the fills out form trigger campaign. New value: {{system.date}} + 30. Yo will be able to instert that end date in a token in the emails.
  • Add a field, call it "trial start date" and populate it with a data value change in the fills out form trigger campaign. New value: {{system.date}}, then use a script token to compute the end date and insert that script token in the emails.

-Greg

Frank_Breen2
New Participant
May 6, 2016

That worked, thanks.