This is just not working for us.I got a hold of all the new email templates from version 9.0.9 by opening a demo store. I just wanted to ensure I was current on the code. For the product reminder, the trigger is set because I'm receiving the emails. Now we're in troubleshooting mode, so all the emails are coming to me, not the customer. Please see the code below; the only thing I have done is add the order ID so I can verify that there are products listed on that order that can be reviewed.
Before I get my developer Involved are there any troubleshooting ideas you can share?
Many Thanks
<html>
<head>
<style type="text/css">
TABLE.Email {
width: 640px;
padding: 0px;
margin: 0px;
border: 0px;
}
TABLE.Email TH {
font-weight: normal;
font-size: 20px;
color: #808080;
font-family: Calibri;
background-color: #cccccc;
text-align: center;
text-decoration: none;
padding: 5px;
}
TABLE.Email TD {
font-weight: normal;
font-size: 14px;
color: #000000;
font-family: Calibri;
background-color: #ffffff;
text-align: left;
text-decoration: none;
padding: 8px;
border: 1px dotted #ccc;
}
</style>
</head>
<body>
<table class="Email">
<tr>
<th class="Email">Thanks for your recent order with us!</th>
</tr>
<tr>
<td class="Email">
<p>Hello,</p>
<p>If you have a few minutes, we'd like to invite you to review the products you ordered. Just click on the link below to write a review and share your opinion with other shoppers.</p>
<p> Order #: #$order.OrderNumber </p>
<ul>
#foreach($product in $products)
<li><strong>$product.Name</strong> - <a href="${store.StoreUrl}${product.NavigateUrl.Substring(2)}?Reviewing=true#reviewsPane">Review this product</a></li>
#end
</ul>
<p>Thanks in advance for taking the time to review the products you purchased.</p>
<p>
We look forward to seeing you again!<br />
<a href="${store.StoreUrl}default">$store.Name</a>
</p>
<hr />
<p>
<p><strong>This is an automated message -</strong></p>
We will send only one invitation to review your recent purchase. If you do not wish to receive reminder email from this store, click the link below to unsubscribe from product review invitations for any future purchases.<br />
<a href="${unsubscribeLink}">${unsubscribeLink}</a><br />
If clicking the link doesn't work, you can copy and paste the link into your browser's address window, or retype it there.
</p>
</td>
</tr>
</table>
</body>
</html>
This is what I get in an email.Hello,
If you have a few minutes, we'd like to invite you to review the products you ordered. Just click on the link below to write a review and share your opinion with other shoppers.
Order #: #12403457
Thanks in advance for taking the time to review the products you purchased.
We look forward to seeing you again!
MyRadioMall.com
________________________________________
This is an automated message -
We will send only one invitation to review your recent purchase. If you do not wish to receive reminder email from this store, click the link below to unsubscribe from product review invitations for any future purchases.
${unsubscribeLink}
If clicking the link doesn't work, you can copy and paste the link into your browser's address window, or retype it there.
Edited by user Tuesday, June 4, 2024 2:23:09 PM(UTC)
| Reason: Not specified