Back to top

Autore Topic: Template per email di notifica ordine  (Letto 2900 volte)

Offline marcellov

  • Esploratore
  • **
  • Post: 79
    • Mostra profilo
Template per email di notifica ordine
« il: 07 Dic 2007, 17:44:52 »
Ciao a tutti,

ho fatto un template per l'email di notifica ordine che viene inviato al cliente, vi posto il codice:

Codice: [Seleziona]
<html>
<head>
<title>Conferma Ordine</title>
<style type="text/css">
<!--
body, table {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}

table {
  border-width: 1px;
border-spacing: 0px;
border-style: solid;
border-color: #333;
border-collapse: collapse;
border-spacing: 0px;
margin-bottom: 15px;
}
table th {
border-width: 1px;
padding: 4px;
border-style: solid;
border-color: #333;
border-spacing: 0px;
text-align: left;
background-color:#CCCCCC;
font-size: 10px;
font-weight: bold;
}
table td {
border-width: 1px;
padding: 4px;
border-style: solid;
border-color: #333;
}
-->
</style>
</head>
<body>
<!-- Inizio tabella Informazioni Venditore e Cliente -->
<table width="100%" cellspacing="0">
  <tr>
    <th width="55%" valign="top">{phpShopVendorName}</th>
    <th width="45%" valign="top">Informazioni cliente</th>
  </tr>
  <tr>
    <td valign="top">{phpShopVendorStreet1}<br />
      {phpShopVendorStreet2}
    {phpShopVendorZip} {phpShopVendorCity}</td>
    <td valign="top">{phpShopBTCompany}<br />
      {phpShopBTStreet1}<br />
      {phpShopBTStreet2} {phpShopBTZip} {phpShopBTCity} ({phpShopBTState}) <br>
      Tel.: {phpShopBTPhone} - Fax: {phpShopBTFax}<br />
    P. IVA: {phpShopSTIva}</td>
  </tr>
</table>
<!-- Fine tabella Informazioni Venditore e Cliente -->
<p>{phpShopOrderHeaderMsg}</p>
 <!-- Inizio tabella Informazioni Generali sull'Ordine -->
 <table width="100%" cellspacing="0">
   <tr>
    <th colspan=4 valign="top" class="Stil2"><b>Informazioni Ordine</b></th>
  </tr>
  <tr>
    <td width="16%" valign="top"><strong>Numero Ordine</strong><br />
    {phpShopOrderNumber}</td>
    <td width="27%" valign="top"><strong>Data Ordine</strong><br />
    {phpShopOrderDate}</td>
    <td width="21%" valign="top"><strong>Status ordine</strong><br />
    {phpShopOrderStatus}</td>
    <td width="36%" valign="top"><strong>Modalit&agrave; di pagamento</strong><br />
    {PAYMENT_INFO_DETAILS}</td>
  </tr>
 <!-- <tr>
    <td colspan="2" valign="top"><strong>Banca d'appoggio</strong><br />
{phpShopSTBanca}</td>
    <td valign="top"><strong>C/C</strong><br />
    {phpShopSTConto}</td>
    <td valign="top"><strong>ABI - CAB</strong><br />
      {phpShopSTAbiCab}
</td>
  </tr>
  -->
 <tr>
    <td colspan=4 valign="top"><b>Indirizzo di spedizione</b><br />
      {phpShopSTCompany},
      {phpShopSTStreet1},
      {phpShopSTStreet2}
      {phpShopSTZip} {phpShopSTCity} ({phpShopSTState})</td>
  </tr>
</table>
  <!-- Fine tabella Informazioni Generali sull'Ordine -->
<!-- Inizio tabella Riepilogo Ordine -->
 <table cellspacing=0 width=100%>
  <tr>
    <th colspan=5 valign="top">Il Suo Ordine</th>
  </tr>
  <tr>
          <th width="23%" valign="top">Cod. Art. - Cod. EAN </th>
          <th width="42%" valign="top">Descrizione</th>
          <th width="7%" valign="top">Qt&agrave;.</th>
          <!-- <th width="12%" valign="top">Prezzo di Listino</th>
          <th width="7%" valign="top">Sconto</th> -->
          <th width="10%" valign="top">Prezzo Netto</th>
          <th width="18%" valign="top">Totale</th>
   </tr>
        <tr>{phpShopOrderItems}</tr>
        <tr>
          <td colspan=4 align=right valign="top">&nbsp;&nbsp;</td>
          <td valign="top">&nbsp;</td>
        </tr>
        <tr>
          <td colspan=4 align=right valign="top">Imponibile:</td>
          <td valign="top">&nbsp;{phpShopOrderSubtotal}</td>
        </tr>
        {phpShopOrderDisc1}
        <tr>
          <td colspan=4 align=right valign="top">Spedizione {SHIPPING_INFO_DETAILS}:</td>
          <td valign="top">+ {phpShopOrderShipping}</td>
        </tr>
        <!--MODIFICA ALESSANDRA 19/01/07-->
        <tr>
          <td colspan=4 align=right valign="top">Spese bancarie:</td>
          <td valign="top">+ {phpShopOrderFee}</td>
        </tr>
        <!--FINE MODIFICA-->
        <tr>
          <td colspan=4 align=right valign="top">IVA:</td>
          <td valign="top">+ {phpShopOrderTax}</td>
        </tr>
        {phpShopOrderDisc2}
        <tr>
          <td colspan=4 align=right valign="top"><b>Totale:</b></td>
          <td valign="top">&nbsp;{phpShopOrderTotal}</td>
        </tr>
        {phpShopOrderDisc3}
</table>
 <table width="100%" cellspacing="0">
  <tr>
    <th width="48%">Note del cliente:</th>
  </tr>
  <tr>
    <td valign="top">{phpShopCustomerNote}&nbsp;</td>
  </tr>
</table>
 <p>{phpShopOrderClosingMsg}</p>
</body>
</html>
« Ultima modifica: 07 Dic 2007, 17:49:26 da marcellov »

Offline cucamod

  • Esploratore
  • **
  • Post: 93
    • Mostra profilo
Re: Template per email di notifica ordine
« Risposta #1 il: 08 Dic 2007, 15:05:46 »
qualche screen?

Offline marcellov

  • Esploratore
  • **
  • Post: 79
    • Mostra profilo
Re: Template per email di notifica ordine
« Risposta #2 il: 08 Dic 2007, 17:48:33 »
Eccolo

[allegato eliminato da un amministratore - sono passati più 400 giorni dall'inserimento di questo allegato]

Offline cucamod

  • Esploratore
  • **
  • Post: 93
    • Mostra profilo
Re: Template per email di notifica ordine
« Risposta #3 il: 12 Dic 2007, 18:23:08 »
grafica minimalista come piace a me :), great!

Offline matrix845

  • Appassionato
  • ***
  • Post: 483
    • Mostra profilo
Re: Template per email di notifica ordine
« Risposta #4 il: 11 Lug 2008, 12:21:12 »
ottimo , ora gli do un po di colore , e vediamo cosa ne esce fuori!!!


Ciao


Pierpaolo

Offline fre2004

  • Appassionato
  • ***
  • Post: 552
    • Mostra profilo
Re: Template per email di notifica ordine
« Risposta #5 il: 14 Lug 2008, 13:08:43 »
hai fatto qualche prova nelle webmail per vedere se funge?

perchè mi sa che ci sarà qualche problema conil fle css nella head.
Sviluppi con Joomla!?

 



Web Design Bolzano Kreatif