Covivo/mobicoop

View on GitHub
api/templates/communicationAlt/en/email/notification/reportUser.html.twig

Summary

Maintainability
Test Coverage
{# CAREFUL : Some client might need to replicate this template #}
{% extends 'communicationAlt/fr/email/notification/base.html.twig' %}
{% block body %}
<table style="width:480px; font-family:{{api_env('EMAILS_FONT')}}, sans-serif;" cellpadding="0" cellspacing="0" summary="" border="0">
    <tr style="margin-bottom:21px; margin-top:19px;">
        <td align="center">
            <table cellpadding="6" cellspacing="6" summary="" border="0">
                <tr>
                    <td align="center">
                        <p style="color:{{api_env('EMAILS_COLOR_PRIMARY')}}; font-size:20px;" text-align="center" ><b>A user has been reported</b></p>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr>
        <td align="center">
            <table style="width:100%;" cellpadding="4" cellspacing="4" summary="" border="0" >
                <tr>
                    <td style="width:22px">
                        <p> </p>
                    </td>
                    <td align="left">
                        <p style="font-size:11px; text-align: justify;">It's about {{ context.user.givenName }}  {{ context.user.familyName }} {{ context.user.email }}</p>
                        <p style="font-size:11px; text-align: justify;">The email address of the reporting user is {{ context.reporterEmail }}</p>
                        <p style="font-size:11px; text-align: justify;">report details :</p>
                    </td>
                </tr>
                <tr>
                    <td style="width:5px">
                        <p> </p>
                    </td>
                    <td>
                        <p style="font-size:11px;">{{ context.text | nl2br }}</p>
                    </td>
                    <td style="width:5px">
                        <p> </p>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
     <tr>
        <td style="height:15px">
            <p> </p>
        </td>
    </tr>
</table>
{% endblock %}