-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CancelEmail should have its own template. (#801)
fixes #798
- Loading branch information
1 parent
facb6db
commit d86e354
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | ||
<title><%t SilverShop\ShopEmail.CancelNotificationTitle "Order cancelled" %></title> | ||
<% include SilverShop\Includes\OrderReceiptStyle %> | ||
</head> | ||
<body> | ||
<table id="container" cellpadding="0" cellspacing="0" border="0"> | ||
<tr> | ||
<td> | ||
<table id="Content" cellspacing="0" cellpadding="0" summary="Email Information"> | ||
<thead> | ||
<tr> | ||
<th scope="col" colspan="2"> | ||
<h1 class="title">$Subject</h1> | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<% if $Order %> | ||
<tr> | ||
<td class="" valign="top"> | ||
<%t SilverShop\ShopEmail.OrderCancelled 'Order #{OrderNo} was cancelled"' OrderNo=$Order.Reference %> | ||
</td> | ||
</tr> | ||
<% loop $Order %> | ||
<tr> | ||
<td> | ||
<% include SilverShop\Model\Order %> | ||
</td> | ||
</tr> | ||
<% end_loop %> | ||
<% end_if %> | ||
</tbody> | ||
</table> | ||
</td> | ||
</tr> | ||
</table> | ||
</body> | ||
</html> |