ProductCart E-Commerce Solutions Homepage
Forum Home Forum Home > ProductCart > Suggestions
  New Posts New Posts RSS Feed - Layout of Order Shipped Email
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Layout of Order Shipped Email

 Post Reply Post Reply
Author
Message
Guests View Drop Down
Guest
Guest
Post Options Post Options   Thanks (0) Thanks(0)   Quote Guests Quote  Post ReplyReply Direct Link To This Post Topic: Layout of Order Shipped Email
    Posted: 20-March-2012 at 7:36pm
A customer who recently purchased out HTML Formatted Emails add-on started taking a closer look at the emails ProductCart sends out and noticed that the layout of the content PC generates for the order shipping emails is kinda funky.

They come out something like this
Order ID #10131 - Shipment Completed

Please Note: this shipment completes your order. According to our records, all products have been shipped and should arrive shortly (delivery time changes depending on the shipping option you selected when you placed your order). If you do not receive one or more of the items that you have ordered, please contact us.


Dear Sean Connors

We thought you may like to know that your order number 10131 has been shipped. Shipping details are listed below.

If you have any questions, please do not hesitate to contact us.

List of shipped product(s):

The Official WMS Rubber Ducky - Qty:1
Pirate Duckies (Medium) - Qty:1


Package Information:
Shipment Method:Standard Shipping
Shipped Date:3/16/2012

Thank you for shopping at WMS Demo Store.

It would be much nicer to have something like:
Dear Sean Connors

We thought you may like to know that your order number 10131 has been shipped. Shipping details are listed below.

If you have any questions, please do not hesitate to contact us.

Order ID #10131 - Shipment Completed

Please Note: this shipment completes your order. According to our records, all products have been shipped and should arrive shortly (delivery time changes depending on the shipping option you selected when you placed your order). If you do not receive one or more of the items that you have ordered, please contact us.

List of shipped product(s):

The Official WMS Rubber Ducky - Qty:1
Pirate Duckies (Medium) - Qty:1


Package Information:
Shipment Method:Standard Shipping
Shipped Date:3/16/2012

Thank you for shopping at WMS Demo Store.

Here's the code modification we did for him on /pc/inc_PartShipEmail.asp:
'<WMS mod: place salutation message above content on order shipped emails>
if pcv_AdmComments<>"" then
pcv_DropShipperMsg=pcv_DropShipperMsg & vbcrlf & replace(pcv_AdmComments,"''","'") & vbcrlf & vbcrlf
end if
if pcv_LastShip="1" then ' This is the last (or only) shipment
pcv_DropShipperSbj=ship_dictLanguage.Item(Session("language")&"_partship_sbj_9")
pcv_DropShipperSbj=replace(pcv_DropShipperSbj,"<ORDER_ID>",(scpre + int(qry_ID)))
'<WMS> Replace with line below
'pcv_DropShipperMsg=pcv_DropShipperSbj & vbcrlf & vbcrlf
pcv_DropShipperMsg=pcv_DropShipperMsg & pcv_DropShipperSbj & vbcrlf & vbcrlf
pcv_DropShipperMsg=pcv_DropShipperMsg & ship_dictLanguage.Item(Session("language")&"_partship_msg_8") & vbcrlf & vbcrlf
pcv_DropShipperMsg1=ship_dictLanguage.Item(Session("language")&"_partship_msg_8a") & vbcrlf
else
pcv_DropShipperSbj=ship_dictLanguage.Item(Session("language")&"_partship_sbj_1")
pcv_DropShipperSbj=replace(pcv_DropShipperSbj,"<ORDER_ID>",(scpre + int(qry_ID)))
'<WMS> Replace with line below
'pcv_DropShipperMsg=pcv_DropShipperSbj & vbcrlf & vbcrlf
pcv_DropShipperMsg=pcv_DropShipperMsg & pcv_DropShipperSbj & vbcrlf & vbcrlf
pcv_DropShipperMsg=pcv_DropShipperMsg & ship_dictLanguage.Item(Session("language")&"_partship_msg_1") & vbcrlf & vbcrlf
pcv_DropShipperMsg1=ship_dictLanguage.Item(Session("language")&"_partship_msg_1a") & vbcrlf & vbcrlf
end if
'if pcv_AdmComments<>"" then
' pcv_DropShipperMsg=pcv_DropShipperMsg & vbcrlf & replace(pcv_AdmComments,"''","'") & vbcrlf & vbcrlf
'end if
'</WMS>
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.063 seconds.