Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

mailParameters replyAddress

Avatar

Community 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

     Manoj
     Find me on LinkedIn

View solution in original post

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.


     Manoj
     Find me on LinkedIn

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.

     Manoj
     Find me on LinkedIn

Avatar

Community 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

     Manoj
     Find me on LinkedIn

Avatar

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