19 lines
552 B
HTML
19 lines
552 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 Team at Tenhal
|
|
</p>
|
|
</body>
|
|
</html>
|