feat: Complete checkout overhaul with Stripe PaymentIntent integration and abandoned cart recovery
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Welcome to Fotospiel</title>
|
||||
<title>{{ __('emails.welcome.subject', ['name' => $user->fullName]) }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Willkommen bei Fotospiel, {{ $user->fullName }}!</h1>
|
||||
<p>Vielen Dank für Ihre Registrierung. Ihr Account ist nun aktiv.</p>
|
||||
<p>Username: {{ $user->username }}</p>
|
||||
<p>E-Mail: {{ $user->email }}</p>
|
||||
<p>Bitte verifizieren Sie Ihre E-Mail-Adresse, um auf das Admin-Panel zuzugreifen.</p>
|
||||
<p>Mit freundlichen Grüßen,<br>Das Fotospiel-Team</p>
|
||||
<h1>{{ __('emails.welcome.greeting', ['name' => $user->fullName]) }}</h1>
|
||||
<p>{{ __('emails.welcome.body') }}</p>
|
||||
<p>{{ __('emails.welcome.username', ['username' => $user->username]) }}</p>
|
||||
<p>{{ __('emails.welcome.email', ['email' => $user->email]) }}</p>
|
||||
<p>{{ __('emails.welcome.verification') }}</p>
|
||||
<p>{!! __('emails.welcome.footer') !!}</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user