templates/emails/contact.html.twig line 1

Open in your IDE?
  1. {% extends "email_base.html.twig" %}
  2. {% block title %} Nouveau message de contact depuis RYVUP - {{ parent() }} {% endblock %}
  3. {% block body %}
  4. <tr>
  5.     <td class="sm-px-24" style="mso-line-height-rule: exactly; border-radius: 4px; background-color: #ffffff; padding: 48px; text-align: left; font-family: Montserrat, -apple-system, 'Segoe UI', sans-serif; font-size: 16px; line-height: 24px; color: #626262;">
  6.         <p class="sm-leading-32" style="font-family: 'Montserrat', sans-serif; mso-line-height-rule: exactly; margin: 0; margin-bottom: 16px; font-size: 24px; font-weight: 600; color: #263238;">
  7.             Vous avez <strong>1</strong> nouveau message
  8.         </p>
  9.         <table cellpadding="0" cellspacing="0" role="presentation">
  10.             <tr>
  11.                 <td style="text-align: center">
  12.                     {% if userPhoto %}
  13.                     <img style="border-radius: 50%; box-shadow: 0 4px 8px 0 rgba(34, 41, 47, 0.12), 0 2px 4px 0 rgba(34, 41, 47, 0.08);" src="{{ absolute_url('/') ~ 'uploads/files/user/avatar/' ~ userPhoto }}" alt="avatar" height="40" width="40">
  14.                     {% else %}
  15.                     <img style="border-radius: 50%; box-shadow: 0 4px 8px 0 rgba(34, 41, 47, 0.12), 0 2px 4px 0 rgba(34, 41, 47, 0.08);" src="{{ absolute_url('/') ~ 'front/images/avatar/1.jpg' }}" alt="avatar" height="40" width="40">
  16.                     {% endif %}
  17.                 </td>
  18.             </tr>
  19.         </table>
  20.         <p style="font-family: 'Montserrat', sans-serif; mso-line-height-rule: exactly; margin-bottom: 0; font-size: 20px; font-weight: 600; text-align: center">{{ contact.fullName }}</p>
  21.         <p style="font-family: 'Montserrat', sans-serif; mso-line-height-rule: exactly; margin-bottom: 0; font-size: 20px; font-weight: 400; text-align: center">{{ contact.email }}</p>
  22.         <table cellpadding="0" cellspacing="0" role="presentation">
  23.             <tr>
  24.                 <td style="mso-line-height-rule: exactly; mso-padding-alt: 16px 24px; border-radius: 4px; background-color: #7367f0; font-family: Montserrat, -apple-system, 'Segoe UI', sans-serif;">
  25.                     <a href="{{ messageUrl }}" style="font-family: 'Montserrat', sans-serif; mso-line-height-rule: exactly; display: block; padding-left: 24px; padding-right: 24px; padding-top: 12px; padding-bottom: 12px; font-size: 16px; font-weight: 600; line-height: 100%; color: #ffffff; text-decoration: none; text-align: center">Voir le message</a>
  26.                 </td>
  27.             </tr>
  28.         </table>
  29.     </td>
  30. </tr>
  31. {% endblock %}