Slightly nicer emails
authorCharles Connell <charles@connells.org>
Tue, 14 Jan 2014 04:21:07 +0000 (23:21 -0500)
committerCharles Connell <charles@connells.org>
Wed, 15 Jan 2014 17:29:32 +0000 (12:29 -0500)
karmaworld/settings/common.py
karmaworld/templates/account/email/email_confirmation_message.txt
karmaworld/templates/account/email/email_confirmation_subject.txt
karmaworld/templates/account/email/password_reset_key_message.txt
karmaworld/templates/account/email/password_reset_key_subject.txt

index f6b2b292cc60c08a9d04ea74cdc86b5decae2a38..fd604a5e30b1513a341986546cec7a64f9705db2 100644 (file)
@@ -262,9 +262,9 @@ AUTHENTICATION_BACKENDS = (
 
 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
index 50bfb87bf4dc3a56fd057894340c10f802b1791b..bcd8f86c940e5884becb4ae1d72a000b7152dbbc 100644 (file)
@@ -1,4 +1,9 @@
-{% 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 %}
index 3c960da37e337a5c5a71727f43dd8da4efef6699..c7d5cc7e59e9a7e647bc446c210eff41ffff7a5d 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 {% autoescape off %}
-{% blocktrans %}Confirm E-mail Address{% endblocktrans %}
+{% blocktrans %}Confirm your KarmaNotes e-mail{% endblocktrans %}
 {% endautoescape %}
index 585e8b393866aa80ae73abd064e5aa6e0b20eaba..034917263e7f1822a990e9f2ba1ca751fdb32d74 100644 (file)
@@ -1,9 +1,11 @@
-{% 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 %}
index aa80d11443681dc4a13a595acc1700b55ef27029..67a1c59ead3dbd135423804642d979c8baf634e5 100644 (file)
@@ -1,4 +1,4 @@
 {% load i18n %}
 {% autoescape off %}
-{% blocktrans %}Password Reset E-mail{% endblocktrans %}
+{% blocktrans %}KarmaNotes Password Reset{% endblocktrans %}
 {% endautoescape %}
\ No newline at end of file