Hi,
I am making an e-commerce site and having problems with the order notification emails.
Emails are missing product and order details but they are having all the user details
Below is the screenshot of the emails:
Below is the code I am using in my email template:
<html><head></head><body>
<table width="600" cellspacing="0" cellpadding="5" bordercolor="black" border="1">
<tbody>
<tr>
<td height="50" valign="bottom" colspan="2">
<table height="100%" width="100%">
<tbody>
<tr>
<td style="text-align: left; vertical-align: bottom;"><span style="font-size: 18pt;">Your order</span></td>
<td style="text-align: center; vertical-align: middle;"><span style="font-family: Garamond,Times,serif; font-size: 24pt; font-style: italic;">Scott Crawford</span></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td style="text-align: left;"><br />
<table width="100%">
<tbody>
<tr>
<td valign="bottom" style="text-align: left;"><strong>Invoice number:</strong></td>
<td style="text-align: right; padding-right: 10px;">{%INVOICENUMBER%}</td>
</tr>
</tbody>
</table>
</td>
<td style="text-align: left;"><br />
<table width="100%">
<tbody>
<tr>
<td valign="bottom" style="text-align: left;"><strong>Order date:</strong></td>
<td style="text-align: right; padding-right: 10px;">{%ORDERDATE%}</td>
</tr>
<tr>
<td valign="bottom" style="text-align: left;"><strong>Order status:</strong></td>
<td style="text-align: right; padding-right: 10px;">{%OrderStatus.StatusDisplayName%}</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>
Has anyone came across this issue before?
Thanks
Gitesh Shah