내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

mailParameters replyAddress

Avatar

Level 10

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

 

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

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor
It won't work in the continuous delivery

     Manoj
     Find me on LinkedIn

원본 게시물의 솔루션 보기

5 답변 개

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

Level 10

I already tried that before posting the question.

david_garcia1_0-1616435141888.png

david_garcia1_1-1616435161096.png

 

Avatar

정확한 답변 작성자:
Community Advisor
It won't work in the continuous delivery

     Manoj
     Find me on LinkedIn

Avatar

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