templates/mail/contact_message.html.twig line 1

Open in your IDE?
  1. <html>
  2. <body>
  3.     <table rules="all" style="border:1px solid #666;width:100%" cellpadding="10">
  4.         <tr><td style='background: #eee;'><strong>Name:</strong> </td><td>{{ mail.fullName|default('Is not provided') }}</td></tr>
  5.         <tr><td style='background: #eee;'><strong>Email:</strong> </td><td>{{ mail.email|default('Is not provided') }}</td></tr>
  6.         <tr><td style='background: #eee;'><strong>Contact Number:</strong> </td><td> {{ mail.contact|default('Is not provided') }}</td></tr>
  7.         <tr><td style='background: #eee;'><strong>Subject:</strong> </td><td>{{ mail.subject|default('Is not provided') }} </td></tr>
  8.         <tr><td style='background: #eee;'><strong>Message:</strong> </td><td>{{ mail.message|default('Is not provided') }}</td></tr>
  9.     </table>
  10. </body>
  11. </html>