Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.25 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
  5.         $InlineCSS
  6.     </head>
  7.     <body>
  8.  
  9.         <h3><% _t('Order_ReceiptEmail.GREETING', 'Hi') %> $Customer.Name,</h3>
  10.         $Message
  11.    
  12.         <% with Order %>
  13.             <div class="order sws">
  14.                 <table class="table table-bordered">
  15.                     <tr>
  16.                         <th>
  17.                             <% _t('Order_ReceiptEmail.ORDER', 'Order') %> #$ID - $Status<br />
  18.                             <a href="$Link" id="OrderLink"><% _t('Order_ReceiptEmail.VIEW_ORDER', 'View this order') %></a>
  19.                         </th>
  20.                     </tr>
  21.                     <tr>
  22.                         <td>
  23.                             $OrderedOn.Format(j M Y - g:i a)<br />
  24.                             ($PaymentStatus)
  25.                         </td>
  26.                     </tr>
  27.                 </table>
  28.    
  29.                 <% include OrderAddresses %>
  30.          
  31.                 <% include Order %>
  32.                  <% include OrderDownloads %>
  33.             <% if Payments %>
  34.                     <% include OrderPayments %>
  35.                 <% end_if %>
  36.                
  37.                 <% if CustomerUpdates %>
  38.                     <% include OrderNotes %>
  39.                 <% end_if %>
  40.             </div>
  41.         <% end_with %>
  42.        
  43.         <p>
  44.             <% _t('Order_ReceiptEmail.PAYMENTNOTICE', 'Please note that orders will not be shipped until payment has been successfully processed.') %>
  45.         </p>
  46.        
  47.         $Signature
  48.     </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement