walletservice/resources/views/emails/bank_account_activated.blad...

62 lines
2.5 KiB
PHP
Executable File

<!DOCTYPE html>
<html>
<head>
<title>{{ __('emails.account_activated_title') }}</title>
<style>
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
.container { width: 100%; max-width: 600px; margin: 0 auto; padding: 20px; border: 1px solid #ddd; border-radius: 5px; }
.header { background-color: #f8f9fa; padding: 10px; text-align: center; border-bottom: 1px solid #ddd; }
.content { padding: 20px 0; }
.info-box { background-color: #e9ecef; padding: 15px; border-radius: 4px; margin: 10px 0; }
.footer { font-size: 12px; color: #777; text-align: center; margin-top: 20px; border-top: 1px solid #ddd; padding-top: 10px; }
.label { font-weight: bold; color: #555; }
.brand-name { color: #003366; font-weight: bold; } /* Bleu foncé gras */
</style>
</head>
<body>
<div class="container">
<div class="header">
<h2>{{ __('emails.account_activated_title') }}</h2>
</div>
<div class="content">
<!-- Salutation -->
<h3>{{ __('emails.congratulations') }} {{ $bankAccount->user->firstname }} !</h3>
<p>{{ __('emails.account_activated_body') }}</p>
<div class="info-box">
<p>
<span class="label">{{ __('emails.label_account_number') }} :</span>
{{ $bankAccount->account_number }}
</p>
<p>
<span class="label">{{ __('emails.label_customer_code') }} :</span>
{{ $bankAccount->customer_number }}
</p>
<p>
<span class="label">{{ __('emails.label_account_type') }} :</span>
{{ $bankName }}
</p>
<p>
<span class="label">{{ __('emails.label_status') }} :</span>
<span style="color: green; font-weight: bold;">{{ __('emails.status_active') }}</span>
</p>
</div>
<p>{{ __('emails.account_activated_footer') }}</p>
<p>
{{ __('emails.regards') }}<br>
{{ __('emails.team_signature') }} <span class="brand-name">{{ __('emails.company_name') }}</span>.
</p>
</div>
<div class="footer">
<p>{{ __('emails.automated_msg') }}</p>
<p>&copy; {{ date('Y') }} <span class="brand-name">{{ __('emails.company_name') }}</span>. {{ __('emails.all_rights') }}</p>
</div>
</div>
</body>
</html>