{% load i18n %}{% trans "Verify Your Email Address" %} - {{ site_name }}

{% blocktrans with name=user.get_full_name|default:user.username %}Hello {{ name }},{% endblocktrans %}

{% blocktrans with site=site_name %}Thank you for registering with {{ site }}! To complete your registration, please verify your email address by clicking the link below.{% endblocktrans %}

{% trans "Verification Link:" %}
{{ verification_url }}

{% trans "SECURITY NOTICE:" %}
{% blocktrans with hours=token_expiry_hours %}- This link will expire in {{ hours }} hours{% endblocktrans %}
- {% trans "If you did not create an account, please ignore this email" %}
- {% trans "Never share this link with anyone" %}
- {% trans "Our team will never ask for your password via email" %}

{% blocktrans with email=support_email %}If you need assistance, contact us at {{ email }}.{% endblocktrans %}

{% trans "Best regards," %}
{% blocktrans with site=site_name %}The {{ site }} Team{% endblocktrans %}

---
{% trans "This email was sent to" %} {{ user.email }}
{% blocktrans with site=site_name year=current_year %}(c) {{ year }} {{ site }}. All rights reserved.{% endblocktrans %}
{% trans "Support:" %} {{ support_email }}
