<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : Layout of Order Shipped Email</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Suggestions : Layout of Order Shipped Email]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 10 Apr 2026 23:17:31 +0000</pubDate>
  <lastBuildDate>Tue, 20 Mar 2012 19:36:08 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=5061</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Layout of Order Shipped Email : A customer who recently purchased...]]></title>
   <link>https://forum.productcart.com/layout-of-order-shipped-email_topic5061_post19352.html#19352</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 5061<br /><strong>Posted:</strong> 20-March-2012 at 7:36pm<br /><br />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.<div><br></div><div>They come out something like this</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>Order ID #10131 - Shipment Completed<br><br>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.<br><br><br>Dear Sean Connors<br><br>We thought you may like to know that your order number 10131 has been shipped. Shipping details are listed below.<br><br>If you have any questions, please do not hesitate to contact us.<br><br>List of shipped product(s):<br><br>The Official WMS Rubber Ducky - Qty:1<br>Pirate Duckies (Medium) - Qty:1<br><br><br>Package Information:<br>Shipment Method:Standard Shipping<br>Shipped Date:3/16/2012<br><br>Thank you for shopping at WMS Demo Store.<br></div><div></pre></td></tr></table></div><div><br></div><div>It would be much nicer to have something like:</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>Dear Sean Connors<br><br>We thought you may like to know that your order number 10131 has been shipped. Shipping details are listed below.<br><br>If you have any questions, please do not hesitate to contact us.<br><br>Order ID #10131 - Shipment Completed<br><br>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.<br><br>List of shipped product(s):<br><br>The Official WMS Rubber Ducky - Qty:1<br>Pirate Duckies (Medium) - Qty:1<br><br><br>Package Information:<br>Shipment Method:Standard Shipping<br>Shipped Date:3/16/2012<br><br>Thank you for shopping at WMS Demo Store.</div><div></pre></td></tr></table></div><div><br></div><div>Here's the code modification we did for him on /pc/inc_PartShipEmail.asp:</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div><span ="Apple-tab-span" style="white-space:pre">		</span>'&lt;WMS mod: place salutation message above content on order shipped emails&gt;</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>if pcv_AdmComments&lt;&gt;"" then</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg=pcv_DropShipperMsg &amp; vbcrlf &amp; replace(pcv_AdmComments,"''","'") &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>end if</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>if pcv_LastShip="1" then ' This is the last (or only) shipment</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperSbj=ship_dictLanguage.Item(Session("language")&amp;"_partship_sbj_9")</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperSbj=replace(pcv_DropShipperSbj,"&lt;ORDER_ID&gt;",(scpre + int(qry_ID)))<span ="Apple-tab-span" style="white-space:pre">	</span></div><div><span ="Apple-tab-span" style="white-space:pre">			</span>'&lt;WMS&gt; Replace with line below</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>'pcv_DropShipperMsg=pcv_DropShipperSbj &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg=pcv_DropShipperMsg &amp; pcv_DropShipperSbj &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg=pcv_DropShipperMsg &amp; ship_dictLanguage.Item(Session("language")&amp;"_partship_msg_8") &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg1=ship_dictLanguage.Item(Session("language")&amp;"_partship_msg_8a") &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>else</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperSbj=ship_dictLanguage.Item(Session("language")&amp;"_partship_sbj_1")</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperSbj=replace(pcv_DropShipperSbj,"&lt;ORDER_ID&gt;",(scpre + int(qry_ID)))<span ="Apple-tab-span" style="white-space:pre">	</span></div><div><span ="Apple-tab-span" style="white-space:pre">			</span>'&lt;WMS&gt; Replace with line below</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>'pcv_DropShipperMsg=pcv_DropShipperSbj &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg=pcv_DropShipperMsg &amp; pcv_DropShipperSbj &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg=pcv_DropShipperMsg &amp; ship_dictLanguage.Item(Session("language")&amp;"_partship_msg_1") &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">			</span>pcv_DropShipperMsg1=ship_dictLanguage.Item(Session("language")&amp;"_partship_msg_1a") &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>end if</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>'if pcv_AdmComments&lt;&gt;"" then</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>'<span ="Apple-tab-span" style="white-space:pre">	</span>pcv_DropShipperMsg=pcv_DropShipperMsg &amp; vbcrlf &amp; replace(pcv_AdmComments,"''","'") &amp; vbcrlf &amp; vbcrlf</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>'end if</div><div><span ="Apple-tab-span" style="white-space:pre">		</span>'&lt;/WMS&gt;</div></div><div></pre></td></tr></table></div>]]>
   </description>
   <pubDate>Tue, 20 Mar 2012 19:36:08 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/layout-of-order-shipped-email_topic5061_post19352.html#19352</guid>
  </item> 
 </channel>
</rss>