<html>
<body>
<table rules="all" style="border:1px solid #666;width:100%" cellpadding="10">
<tr><td style='background: #eee;'><strong>Name:</strong> </td><td>{{ mail.fullName|default('Is not provided') }}</td></tr>
<tr><td style='background: #eee;'><strong>Email:</strong> </td><td>{{ mail.email|default('Is not provided') }}</td></tr>
<tr><td style='background: #eee;'><strong>Contact Number:</strong> </td><td> {{ mail.contact|default('Is not provided') }}</td></tr>
<tr><td style='background: #eee;'><strong>Subject:</strong> </td><td>{{ mail.subject|default('Is not provided') }} </td></tr>
<tr><td style='background: #eee;'><strong>Message:</strong> </td><td>{{ mail.message|default('Is not provided') }}</td></tr>
</table>
</body>
</html>