forked from DNNspot/DNNspot.Store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrderCompletedEmailAdmin.html
90 lines (90 loc) · 3.69 KB
/
OrderCompletedEmailAdmin.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
<table cellspacing="0" cellpadding="0" border="0" width="98%" style="width: 98%;">
<tr>
<td>
<h3>Order #{{order.number}} <span style="font-size: 12px;">(placed on {{order.date}})</span></h3>
<p>
Customer: {{customer.firstname}} {{customer.lastname}} (UserId: {{customer.userid}})
<br />
Email: {{customer.email}}
</p>
<p> </p>
</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>
<strong>{{store.name}}</strong>
</p>
</td>
</tr>
</table>