ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_AUTHENTICATION_METHOD = "email"
-ACCOUNT_CONFIRM_EMAIL_ON_GET = True
+ACCOUNT_CONFIRM_EMAIL_ON_GET = False
ACCOUNT_EMAIL_VERIFICATION = "optional"
-ACCOUNT_EMAIL_SUBJECT_PREFIX = "KarmaNotes.org"
+ACCOUNT_EMAIL_SUBJECT_PREFIX = "KarmaNotes.org -- "
ACCOUNT_USER_MODEL_EMAIL_FIELD = "email"
ACCOUNT_USERNAME_REQUIRED = False
SOCIALACCOUNT_EMAIL_REQUIRED = True
-{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with current_site.name as site_name %}User {{ user_display }} at {{ site_name }} has given this as an email address.
+{% load account %}
+{% user_display user as user_display %}
+{% autoescape off %}
+Hey {{ user_display }},
-To confirm this is correct, go to {{ activate_url }}
-{% endblocktrans %}{% endautoescape %}
+Welcome to KarmaNotes! Please confirm your email with the link below:
+
+{{ activate_url }}
+{% endautoescape %}
{% load i18n %}
{% autoescape off %}
-{% blocktrans %}Confirm E-mail Address{% endblocktrans %}
+{% blocktrans %}Confirm your KarmaNotes e-mail{% endblocktrans %}
{% endautoescape %}
-{% load i18n %}{% blocktrans with site.domain as site_domain and user.username as username %}You're receiving this e-mail because you or someone else has requested a password for your user account at {{site_domain}}.
+{% load account %}
+{% user_display user as user_display %}
+{% autoescape off %}
+Hey {{ user_display }},
+
+You're receiving this e-mail because you (or someone else) has requested a password for your user account at KarmaNotes.
It can be safely ignored if you did not request a password reset. Click the link below to reset your password.
{{password_reset_url}}
-In case you forgot, your username is {{username}}.
-
-Thanks for using our site!
-{% endblocktrans %}
+{% endautoescape %}
{% load i18n %}
{% autoescape off %}
-{% blocktrans %}Password Reset E-mail{% endblocktrans %}
+{% blocktrans %}KarmaNotes Password Reset{% endblocktrans %}
{% endautoescape %}
\ No newline at end of file