@extends('emails.layouts.abec') @section('subject', 'Payment received — ABEC Africa') @section('preheader', 'Your payment has been received and your membership is now active.') @section('content')
Hi {{ $user->name }}, we've received your payment of ${{ number_format($amountUsd, 2) }} USD. Your ABEC Africa membership is now active.
Amount paid: ${{ number_format($amountUsd, 2) }} USD
Membership tier: {{ $subscription->tier->name ?? 'Member' }}
@if($subscription->expires_at)
Valid until: {{ $subscription->expires_at->format('j F Y') }}
@else
Duration: Lifetime
@endif
Keep this email as your receipt. Contact members@abecafrica.org for billing enquiries.
@endsection