Hello.
I want to know, How to get the value of the variable obtained by JS in the body of the Recurring delivery.
For example, get the date. It into the Email body.
Email is a Text Email.
It is not a HTML Email.
JS
instance.vars.yearTest = formatDate (new Date(), "%Y")
logInfoz("yearTest = [" + instance.vars.yearTest + "]");
Recurring delivery
<%= $(instance/vars/@yearTest) &>
This will give an XFR-180000 error.
I don't think I understand correctly...
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @uz2020 ,
Step 1: Right click recurring delivery > open > in script tab add this below code
delivery.variables._var[0].stringValue=instance.vars.yearTest;
Step 2: In delivery property 'Variable' tab, Add > Define Name and dataType alone
(for eg, Name = yearTest and Data type = Text) and save the delivery.
Step 3: Go to your text content tab, you can select your variable as shown below,
Regards,
ParthaSarathy S
Hi @uz2020 ,
Step 1: Right click recurring delivery > open > in script tab add this below code
delivery.variables._var[0].stringValue=instance.vars.yearTest;
Step 2: In delivery property 'Variable' tab, Add > Define Name and dataType alone
(for eg, Name = yearTest and Data type = Text) and save the delivery.
Step 3: Go to your text content tab, you can select your variable as shown below,
Regards,
ParthaSarathy S
Views
Replies
Total Likes
Hi @uz2020 ,
In which activity you are getting this error? In Recurring delivery call your variable as I had mentioned above, and not in this format <%= $(instance/vars/@yearTest) &>.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi @uz2020,
Were you able to resolve this query or do you still need more help here? Do let us know.
Thanks!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies