templates/mail/EVENT_ERRORS_REPORT.html
[Pman.Admin] / templates / mail / EVENT_ERRORS_REPORT.html
1 From: "Admin" <admin@example.com>
2 To: test@example.com
3 Subject: Event Errors Report.
4 Content-Type: text/html; charset=utf-8
5
6 <html>
7     <head>
8         <meta charset="UTF-8">
9         <style>
10             html,body,table {font-family:Arial;font-size:14px;color:#2c336a;}
11             a {color:green;}
12             
13         </style>
14     </head>
15     <body>
16         
17         <table>
18             <tr>
19                 <th>Date</th>
20                 <th>Person</th>
21                 <th>Type</th>
22                 <th>Error</th>
23             </tr>
24             {foreach:t.errors,e}
25             <tr>
26                 <th>{e.event_when}</th>
27                 <th>{e.email}</th>
28                 <th>{e.action}</th>
29                 <th>{e.remarks}</th>
30             </tr>
31             {end:}
32         </table>
33         
34     </body>
35     
36 </html>