14 lines
429 B
HTML
14 lines
429 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body style="font-family: Arial, sans-serif; direction: {{ direction }};">
|
|
<p>Hello {{ user.get_full_name }},</p>
|
|
|
|
<p>Your <strong>{{ plan.name }}</strong> subscription will expire
|
|
in {{ days_until_expire }} days on {{ expiration_date|date:"F j, Y" }}.</p>
|
|
|
|
<p><a href="{{ RENEWAL_URL }}">Renew now</a> to continue service.</p>
|
|
|
|
<p>Best regards,<br>
|
|
The {{ SITE_NAME }} Team</p>
|
|
</body>
|
|
</html> |