-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathOrderCompletedEmail.html
92 lines (92 loc) · 3.92 KB
/
OrderCompletedEmail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<table cellspacing="0" cellpadding="0" border="0" width="98%" style="width: 98%;">
<tr>
<td>
<p>
<strong>Hello {{customer.firstname}} {{customer.lastname}},</strong>
<br />
Thank you for your order from {{store.name}}. If you have any questions about your order please contact us at {{store.contactemail}}.
Your order confirmation is below.
</p>
<h3>Your Order #{{order.number}} <span style="font-size: 12px;">(placed on {{order.date.monthname}} {{order.date.day}}, {{order.date.year}})</span></h3>
</td>
</tr>
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="width: 100%;">
<tr>
<td width="48%" valign="top" class="box" style="width: 48%; border: 1px solid #BEBCB7; vertical-align: top;">
<h4>Billing Information</h4>
<p>
{{customer.firstname}} {{customer.lastname}}
<br />
{{order.billing.address1}} {{order.billing.address2}}
<br />
{{order.billing.city}}, {{order.billing.region}} {{order.billing.postalcode}}
<br />
{{order.billing.countrycode}}
<br />
Telephone: {{order.billing.telephone}}
</p>
</td>
<td width="3%" style="width: 3%;"> </td>
<td width="48%" valign="top" class="box" style="width: 48%; border: 1px solid #BEBCB7; vertical-align: top;">
<h4>Payment</h4>
<p>
Credit Card Type: {{order.billing.creditcardtype}}
<br />
Card Number: xxxx-{{order.billing.creditcardlast4}}
<br />
Expiration Date: {{order.billing.creditcardexpiration}}
</p>
</td>
</tr>
<tr>
<td colspan="3"><p> </p></td>
</tr>
<tr>
<td width="48%" valign="top" class="box" style="width: 48%; border: 1px solid #BEBCB7; vertical-align: top;">
<h4>Shipping Information</h4>
<p>
{{order.shipping.recipientname}}
<br />
{{order.shipping.address1}} {{order.shipping.address2}}
<br />
{{order.shipping.city}}, {{order.shipping.region}} {{order.shipping.postalcode}}
<br />
{{order.shipping.countrycode}}
<br />
Telephone: {{order.shipping.telephone}}
</p>
</td>
<td width="3%" style="width: 3%;"> </td>
<td width="48%" valign="top" class="box" style="width: 48%; border: 1px solid #BEBCB7; vertical-align: top;">
<h4>Shipping Method</h4>
<p>
{{order.shipping.option}}
</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><p> </p></td>
</tr>
<tr>
<td>
{{order.itemstable}}
</td>
</tr>
<tr>
<td><p> </p></td>
</tr>
<tr>
<td>
<p>
Thanks for your order,
<br />
<strong>{{store.name}}</strong>
</p>
</td>
</tr>
</table>