Web Confirmations

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 Law
Sydney 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 Law
    Sent: Sunday, October 14, 2012 7:58 PM
    To: Sabina Spilkin
    Subject: [Tessitura Web Forum] Web Confirmations

     

    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 Law
    Sydney Opera House 




    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...



    [edited by: Simon Davidson at 4:23 AM (GMT -6) on 16 Oct 2012]
  • Oooh. Thanks Simon! I will have a play with that and see how it goes...