{# # ============================================================================ # EMAIL ATOM: BUTTON # ============================================================================ # # Bouton CTA pour les emails transactionnels. # Remplace le pattern répétitif : #
# # ============================================================================ # PARAMÈTRES # ============================================================================ # # | Paramètre | Type | Défaut | Description | # |-----------|--------|-----------|-------------------------------------| # | label | string | (requis) | Texte du bouton | # | href | string | (requis) | URL de destination | # | color | string | '#0C81E4' | Couleur de fond (hex) | # # ============================================================================ # EXEMPLES # ============================================================================ # # {% include 'emails/_atoms/button/button.html.twig' with { # label: 'Voir mon abonnement', # href: subscriptionUrl # } only %} # # {% include 'emails/_atoms/button/button.html.twig' with { # label: 'Accéder au tableau de bord', # href: dashboardUrl, # color: '#7C3AED' # } only %} # # ============================================================================ #} {% set color = color ?? '#0C81E4' %}