- Add stripeChargesEnabled and stripePayoutsEnabled fields to User entity + migration - Handle account.updated webhook: sync charges_enabled and payouts_enabled from Stripe - Add createAccountConnect() and createAccountLink() to StripeService - Update organizer approved email with Stripe verification notice - Tests: webhook account.updated with flags, unknown account, User stripe fields Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
985 B
Twig
17 lines
985 B
Twig
{% extends 'email/base.html.twig' %}
|
|
|
|
{% block title %}Votre compte organisateur a ete approuve{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Felicitations {{ firstName }} !</h2>
|
|
<p>Votre demande de compte organisateur a ete <strong>approuvee</strong> par l'equipe E-Ticket.</p>
|
|
<p>Vous pouvez desormais vous connecter et commencer a creer vos evenements.</p>
|
|
<div style="background:#fef3c7;border-left:4px solid #f59e0b;padding:12px 16px;margin:16px 0;">
|
|
<p style="font-weight:700;font-size:13px;color:#92400e;margin:0 0 4px;">Important :</p>
|
|
<p style="margin:0;font-size:14px;color:#3f3f46;">Une fois connecte a votre compte, vous devrez effectuer la verification Stripe pour pouvoir recevoir les paiements de vos evenements. Cette etape est obligatoire pour activer les virements sur votre compte bancaire.</p>
|
|
</div>
|
|
<p style="text-align:center;margin:32px 0;">
|
|
<a href="{{ loginUrl }}" class="btn">Se connecter</a>
|
|
</p>
|
|
{% endblock %}
|