01decdb89c1dce4b5a8f9f8b53b541001f652021
[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             th {text-align: left;}
13             th, td {border-bottom: 1px solid #ccc; border-collapse: collapse;}
14         </style>
15     </head>
16     <body>
17         
18         <table style="width:100%">
19             <tr>
20                 <th style="width: 25%">Date</th>
21                 <th style="width: 25%">Person</th>
22                 <th style="width: 15%">Type</th>
23                 <th style="width: 35%">Error</th>
24             </tr>
25             
26             <tr flexy:foreach="errors,error">
27                 <td>{error.event_when}</td>
28                 <td>{error.email}</td>
29                 <td>{error.action}</td>
30                 <td>{error.remarks}</td>
31             </tr>
32             
33         </table>
34         
35     </body>
36     
37 </html>