Hello,
I'm working on the assumption that this is not possible but thought I'd throw it out to the collective brains trust in case it is and I'm missing something...
Is it possible to generate web confirmations with different reply-to (or from) email addresses based on MOS (or product or price type)?
Thanks,
Adriana LawSydney Opera House
I was able to change the Subject line based on Solicitor :
<%if (OrderData.Solicitor == "webapi")
{
Subject = "Your San Diego Symphony Order (Website)";
}
else
Subject = "Your San Diego Symphony Order";
%>
Sabina
From: Tessitura Web Forum [mailto:forums-tessitura-web@tessituranetwork.com] On Behalf Of Adriana LawSent: Sunday, October 14, 2012 7:58 PMTo: Sabina SpilkinSubject: [Tessitura Web Forum] Web Confirmations
You were sent this email automatically because you subscribed to the Tessitura Web forum. You may reply to this message to post to the Web forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!
Hi Adriana,
We actually use an XSL stylesheet sheet to get extra information that isn't exposed via OrderData. You can use the follow to specify a stylesheet:
<%= TransformXml("FilePath")%>
Then in the xsl style sheet parse the //GetOrderDetailsInfoResults/Order/MOS section. You can then use xsl test elements to change the content based on the MOS. I'm not sure if you can use this method to change the from address though, as this is in the SMTP packet, not the HTML content that is being sent...
Oooh. Thanks Simon! I will have a play with that and see how it goes...