- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2014 08:09 AM
Am I limited to just the Parm1 and Parm2 when creating a new event? I need to capture the "previous" values of 4 four field when an event is triggered and use these values in a subsequent email that is sent when the event is triggered. Is it possible to create an event that would have Parm1, Parm2, Parm3, Parm4? If I can't capture these "pervious" values within the event, is there another way to get at these values when the email notification is generated?
Thanks in advance for any suggestion you can provide!
j
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2014 01:56 AM
Hi there,
No, not that I am aware of.
Depending on what you are passing, you could add a comma separated list to one of the parm values with the previous values in it and then on the notification, use a bit of script to separate them and do what ever.
The only other way I can think of is to store the previous values in a table somewhere and reference the row.
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2014 01:56 AM
Hi there,
No, not that I am aware of.
Depending on what you are passing, you could add a comma separated list to one of the parm values with the previous values in it and then on the notification, use a bit of script to separate them and do what ever.
The only other way I can think of is to store the previous values in a table somewhere and reference the row.
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2014 06:10 AM
Thanks Pete. I give the comma separated list a try. I appreciate the help.
j
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2014 02:46 PM
Peter is correct. You only get 2 events so you have to stuff what you need into the events, then in the notification you can parse out your values with a <mail_script>.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2014 05:45 AM
Thanks Justin -- I created an array and threw the previous values into it and then parsed them out. Thank so much for the response.