feat: Complete checkout overhaul with Stripe PaymentIntent integration and abandoned cart recovery
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Purchase Confirmation</title>
|
||||
<title>{{ __('emails.purchase.subject', ['package' => $package->name]) }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Kauf-Bestätigung</h1>
|
||||
<p>Vielen Dank für Ihren Kauf, {{ $purchase->user->fullName }}!</p>
|
||||
<p>Package: {{ $purchase->package->name }}</p>
|
||||
<p>Preis: {{ $purchase->amount }} €</p>
|
||||
<p>Das Package ist nun in Ihrem Tenant-Account aktiviert.</p>
|
||||
<p>Mit freundlichen Grüßen,<br>Das Fotospiel-Team</p>
|
||||
<h1>{{ __('emails.purchase.greeting', ['name' => $user->fullName]) }}</h1>
|
||||
<p>{{ __('emails.purchase.package', ['package' => $package->name]) }}</p>
|
||||
<p>{{ __('emails.purchase.price', ['price' => $purchase->price]) }}</p>
|
||||
<p>{{ __('emails.purchase.activation') }}</p>
|
||||
<p>{!! __('emails.purchase.footer') !!}</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user