Heart Rate Zones
diff --git a/rowers/views.py b/rowers/views.py
index af5609da..752b02bd 100644
--- a/rowers/views.py
+++ b/rowers/views.py
@@ -712,13 +712,20 @@ def rower_register_view(request):
# Create and send email
fullemail = first_name + " " + last_name + " " + "<" + email + ">"
subject = "Thank you for registering on rowsandall.com"
- message = "Thank you for registering on rowsandall.com. You can now login using the credentials you provided.\n"
- message += "The first thing you might want to do is check and edit the heart rate band values. After logging in, click the button with your first name.\n"
- message += "You can also check our videos page at http://rowsandall.com/rowers/videos for some helpful instruction videos.\n\n"
- message += "User name:"+username+"\n"
- message += "For all your questions, just reply to this email.\n\n"
- message += "Happy rowing!\n\n\n"
- message += "Oh, one more thing. The site is currently in beta and is developing fast. Bear with us. Don't hesitate to contact me if anything is broken or doesn't seem to work as advertised."
+ message = """
+Thank you for registering on rowsandall.com. You can now login using the credentials you provided. The first thing you should do is go to the Settings page and make yourself familiar with the various options available to personalize your experience on the website. To get there, click the button with your first name on it in the upper right corner of the opening page.
+
+As a minimum to get you started, enter your data in the Heart Rate Zones and Power Zones sections and your Functional Threshold Power. Then check your Account Information to make sure it is accurate and reflects your preferences.
+
+For additional details on these settings and the buttons at the bottom of the page, read the settings tutorial at http://analytics.rowsandall.com/2017/11/02/rowsandall-settings-page-tutorial/.
+
+Also check out our instructional videos at http://rowsandall.com/rowers/videos.
+
+This website is a labor of love "by rowers, for rowers". If you find it to be useful, please help us cover our hosting costs and gain access to additional functionality by signing on as a Pro member: https://rowsandall.com/rowers/promembership
+
+Oh, one more thing. The site is currently in beta and is developing fast. Bear with us. Don't hesitate to contact me at info@rowsandall.com if anything is broken or doesn't seem to work as advertised.
+"""
+
send_mail(subject, message,
'Sander Roosendaal
',
[fullemail])