Announcement

Collapse
No announcement yet.

How can I add the Special Delivery Instructions to the customer email (v7)?

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

    How can I add the Special Delivery Instructions to the customer email (v7)?

    Add the following line to Act_CustomerEmail.txt (Advanced | Template Manager | Miscellaneous tab | Customer button) where the message is to be printed...

    <Actinic: DELIVERYTEXT/> *Without Spaces*

    You also need to make a change to one of the perl scripts.

    * locate 'OrderScript.pl' in your site folder and open it in a text editor such as notepad

    * search for

    #
    # Print the company contact information
    #

    * Insert the following lines immediately before the above comment...

    $ACTINIC::B2B->SetXML('DELIVERYTEXT', ACTINIC::GetPhrase(-1, 2044) . " " .$::g_ShipInfo{'USERDEFINED'});

    * close and save the file

    * update your site.
Working...
X