Expand my Community achievements bar.

The 5th edition of the Campaign Community Lens newsletter is out now!
SOLVED

mailParameters replyAddress

Avatar

Employee Advisor

How to set the "reply to" for a delivery dynamically through workflow?

 

around the lines of delivery.mailParameters.replyAddress = 'david@test.com';

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
It won't work in the continuous delivery
5 Replies

Avatar

Community Advisor

Hello @David__Garcia 

 

You can try this.

 

var delivery=nms.delivery.load("DELIVERY_TEPMPLATE_PRIMARY_KEY");
delivery.mailParameters.replyAddress="david@test.com";
delivery.save();

 

Let me know if that works.

Avatar

Community Advisor
Also, if you are using the delivery activity from actions tab. Then just writing delivery.mailParameters.replyAddress="david@test.com"; in advanced tab will do the job.

Avatar

Employee Advisor

I already tried that before posting the question.

david_garcia1_0-1616435141888.png

david_garcia1_1-1616435161096.png

 

Avatar

Correct answer by
Community Advisor
It won't work in the continuous delivery

Avatar

Employee Advisor
Interesting, indeed it doesnt work in the continous delivery, do we know why that is?