Hi {{ $userName }},
We know you're interested in the items in your cart. To help you make the decision, we're offering you an exclusive discount!
Use code {{ $discountCode }} for {{ $discountPercent }}% OFF your order!
Your Cart Items:
@foreach($cartItems as $item)
@if($item['product'])
@if($item['product']->imageUrl)
![{{ $item['product']->title }}]({{ $item['product']->imageUrl }})
@endif
{{ $item['product']->title }}
Quantity: {{ $item['quantity'] }}
${{ number_format($item['amount'], 2) }}
@endif
@endforeach
Total: ${{ number_format($abandonedCart->total_amount, 2) }}
With discount: ${{ number_format($abandonedCart->total_amount * (1 - $discountPercent/100), 2) }}
This offer is valid for the next 24 hours only! Don't miss out on this great deal.