I've been trying to include the special shipping instructions on the customer's e-mail and the various threads I've found on the forum don't really work for me.
However, Actinic technical support have sent me the following which works brilliantly. Obviously, it's unsupported and not guaranteed by Actinic but I thought someone would find it useful.
Waggers
Edit OrderScript.pl in the site folder search for "read the template", you will see
#
# Read the template
#
Immediately before this insert the lines
#
# Add shipping info
#
$ACTINIC::B2B->SetXML('SHIP_DELIVERY', $::g_ShipInfo{'USERDEFINED'});
Save and Exit
In Actinic, edit the layout 'Customer Email'
Insert where required
<Actinic:SHIP_DELIVERY/>
Note: This is not a variable but the text that would have been inserted if there had been a variable.
Upload the site and test
This will work for the online email receipt but not for MOTO orders or offline emails.
However, Actinic technical support have sent me the following which works brilliantly. Obviously, it's unsupported and not guaranteed by Actinic but I thought someone would find it useful.
Waggers
Edit OrderScript.pl in the site folder search for "read the template", you will see
#
# Read the template
#
Immediately before this insert the lines
#
# Add shipping info
#
$ACTINIC::B2B->SetXML('SHIP_DELIVERY', $::g_ShipInfo{'USERDEFINED'});
Save and Exit
In Actinic, edit the layout 'Customer Email'
Insert where required
<Actinic:SHIP_DELIVERY/>
Note: This is not a variable but the text that would have been inserted if there had been a variable.
Upload the site and test
This will work for the online email receipt but not for MOTO orders or offline emails.