Announcement

Collapse
No announcement yet.

Buyer Email - Subject Line

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Buyer Email - Subject Line

    Hi,

    I wonder if someone can tell me if it is possible to update the Buyer Email subject line to hold both the Order Number and Surname.

    I have found the relevant text under Design - Text - ID 234, but I am unsure
    as to how Actinic V10.0.2 interprets the information.

    Any help would be greatly appreciated.

    #2
    I suspect the email subject lines are hard coded in the perl scripts as I can't see where they can be changed in Actinic. I don't think DT ID 234 is for the subject line.

    Comment


      #3
      Perl tweak needed. Look in OrderScript.pl for
      Code:
      " $::g_InputHash{ORDERNUMBER}"
      There should be 2 occurrences only. Replace them both with:
      Code:
      " $::g_InputHash{ORDERNUMBER} $sName"
      Or you can be a bit more wordy:
      Code:
      " $::g_InputHash{ORDERNUMBER} Customer: $sName"
      N.B. Untested. Not sure what name will appear. I think it will be the same as appears on the email against:
      Code:
      Dear <Actinic:CUSTOMER_NAME/>,
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Originally posted by NormanRouxel View Post
        Perl tweak needed. Look in OrderScript.pl for
        Code:
        " $::g_InputHash{ORDERNUMBER}"
        There should be 2 occurrences only. Replace them both with:
        Code:
        " $::g_InputHash{ORDERNUMBER} $sName"
        Or you can be a bit more wordy:
        Code:
        " $::g_InputHash{ORDERNUMBER} Customer: $sName"
        N.B. Untested. Not sure what name will appear. I think it will be the same as appears on the email against:
        Code:
        Dear <Actinic:CUSTOMER_NAME/>,
        Thanks for coming back to me, I will try what you have suggested and let you know.

        Comment

        Working...
        X