Announcement

Collapse
No announcement yet.

Add shipping info to Order Shipped email

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

    Add shipping info to Order Shipped email

    How do I add the customer shipping note (if they have entered one) to the Order Shipped email? I would like to see this before sending the email in case they have made an unacceptable request.

    #2
    Hi There,

    If you download the Advanced User Guide from the actinic site [ Here ] Look on page 69 and you should be able to do what you require..

    This is from the Advanced User Guide :

    Shipping Method
    This will show you how to include the customer’s selected shipping class as a variable in the online receipt.
    Open ‘OrderScript.pl’ on Notepad and look for the lines:
    ################
    # Build the receipt
    ################
    Underneath it, enter the following code:
    #
    # Add shipping class into list of variables
    #
    $::s_VariableTable{$::VARPREFIX.'SHIPPINGCLASS'} = $::s_Ship_sShippingDescription;
    You can then add NETQUOTEVAR:SHIPPINGCLASS wherever you want the name of the shipping class to appear in Act_Order04.html.
    To then add the shipping class into the customer’s email receipt, open ‘OrderScript.pl’ and search for “read the template”.
    It will jump to the following lines:
    #
    # Read the template
    #
    Just above this, enter the following lines:
    #
    # Add shipping info
    #
    $ACTINIC::B2B->SetXML('ShippingClass', $::s_Ship_sShippingDescription);
    You can then enter <Actinic:ShippingClass/> into Act_CustomerEmail.txt wherever you want the shipping method to appear.


    Hope this helps,
    Bruce King
    SellerDeck

    Comment

    Working...
    X