24 lines
604 B
Plaintext
24 lines
604 B
Plaintext
{% load i18n %}
|
|
|
|
{% block subject %}
|
|
Activate Your Account - {{ site_name }}
|
|
{% endblock subject %}
|
|
|
|
{% block text_body %}
|
|
Hi{% if user.first_name %} {{ user.first_name }}{% endif %},
|
|
|
|
Thank you for registering with {{ site_name }}!
|
|
|
|
To activate your account, please visit the following link:
|
|
|
|
http://{{ domain }}/{{ url }}
|
|
|
|
This activation link will expire in 24 hours for security reasons.
|
|
|
|
If you didn't create an account with us, you can safely ignore this email.
|
|
|
|
---
|
|
This is an automated message, please do not reply to this email.
|
|
© {{ site_name }} - All rights reserved
|
|
{% endblock text_body %}
|