{# # ============================================================================ # EMAIL ATOM: WARNING BOX # ============================================================================ # # Encadré avertissement (fond jaune pâle, bordure dorée, texte brun). # Remplace le pattern répétitif : #

Texte...

# # ============================================================================ # PARAMÈTRES # ============================================================================ # # | Paramètre | Type | Défaut | Description | # |-----------|--------|----------|--------------------------------------| # | text | string | (requis) | Texte de l'avertissement (plain text)| # | html | string | null | Contenu HTML (prioritaire sur text) | # # ============================================================================ # EXEMPLES # ============================================================================ # # {% include 'emails/_atoms/warning-box/warning-box.html.twig' with { # text: 'Cette action est irréversible.' # } only %} # # {% set warnHtml %}Votre abonnement expire le {{ date }}.{% endset %} # {% include 'emails/_atoms/warning-box/warning-box.html.twig' with { # html: warnHtml # } only %} # # ============================================================================ #} {% set html = html ?? null %}

{% if html %}{{ html|raw }}{% else %}{{ text }}{% endif %}