{% extends "email_base.html.twig" %}
{% block title %} Nouveau message de contact depuis RYVUP - {{ parent() }} {% endblock %}
{% block body %}
<tr>
<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;">
<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;">
Vous avez <strong>1</strong> nouveau message
</p>
<table cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td style="text-align: center">
{% if userPhoto %}
<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">
{% else %}
<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">
{% endif %}
</td>
</tr>
</table>
<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>
<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>
<table cellpadding="0" cellspacing="0" role="presentation">
<tr>
<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;">
<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>
</td>
</tr>
</table>
</td>
</tr>
{% endblock %}