\ No newline at end of file
diff --git a/rhodecode/templates/email_templates/main.mako b/rhodecode/templates/email_templates/main.mako
--- a/rhodecode/templates/email_templates/main.mako
+++ b/rhodecode/templates/email_templates/main.mako
@@ -11,6 +11,6 @@
%def>
## BODY GOES BELOW
-
-${body_plaintext()}
-
\ No newline at end of file
+
+
${body}
+
\ No newline at end of file
diff --git a/rhodecode/templates/email_templates/password_reset.mako b/rhodecode/templates/email_templates/password_reset.mako
--- a/rhodecode/templates/email_templates/password_reset.mako
+++ b/rhodecode/templates/email_templates/password_reset.mako
@@ -16,9 +16,16 @@ There was a request to reset your passwo
You can continue, and generate new password by clicking following URL:
${password_reset_url}
+${self.plaintext_footer()}
%def>
## BODY GOES BELOW
-
-${body_plaintext()}
-
\ No newline at end of file
+
+Hello ${user.username},
+
+There was a request to reset your password using the email address ${email} on ${h.format_date(date)}
+
+If you did not request a password reset, please contact your RhodeCode administrator.
+
\ No newline at end of file
diff --git a/rhodecode/templates/email_templates/password_reset_confirmation.mako b/rhodecode/templates/email_templates/password_reset_confirmation.mako
--- a/rhodecode/templates/email_templates/password_reset_confirmation.mako
+++ b/rhodecode/templates/email_templates/password_reset_confirmation.mako
@@ -9,14 +9,22 @@ Your new RhodeCode password
<%def name="body_plaintext()" filter="n,trim">
Hi ${user.username},
-Below is your new access password for RhodeCode.
+There was a request to reset your password using the email address ${email} on ${h.format_date(date)}
+
+*If you didn't do this, please contact your RhodeCode administrator.*
-password: ${new_password}
+You can continue, and generate new password by clicking following URL:
+${password_reset_url}
-*If you didn't request a new password, please contact your RhodeCode administrator immediately.*
+${self.plaintext_footer()}
%def>
## BODY GOES BELOW
-
-${body_plaintext()}
-
\ No newline at end of file
+
+Hello ${user.username},
+
+Below is your new access password for RhodeCode.
+
+If you didn't request a new password, please contact your RhodeCode administrator.
+
+
password:
\ No newline at end of file
diff --git a/rhodecode/templates/email_templates/pull_request_comment.mako b/rhodecode/templates/email_templates/pull_request_comment.mako
--- a/rhodecode/templates/email_templates/pull_request_comment.mako
+++ b/rhodecode/templates/email_templates/pull_request_comment.mako
@@ -2,11 +2,11 @@
<%inherit file="base.mako"/>
<%def name="subject()" filter="n,trim">
- ${_('[mention]') if mention else ''} ${_('%(user)s commented on pull request #%(pr_id)s: "%(pr_title)s"') % {
- 'user': h.person(user),
- 'pr_title': pull_request.title,
- 'pr_id': pull_request.pull_request_id
- } |n}
+${_('[mention]') if mention else ''} ${_('%(user)s commented on pull request #%(pr_id)s: "%(pr_title)s"') % {
+ 'user': h.person(user),
+ 'pr_title': pull_request.title,
+ 'pr_id': pull_request.pull_request_id
+ } |n}
%def>
<%def name="body_plaintext()" filter="n,trim">
@@ -31,36 +31,30 @@
${_('Pull request was closed with status')}: *${status_change}*
%endif
+${self.plaintext_footer()}
%def>
+
diff --git a/rhodecode/templates/email_templates/user_registration.mako b/rhodecode/templates/email_templates/user_registration.mako
--- a/rhodecode/templates/email_templates/user_registration.mako
+++ b/rhodecode/templates/email_templates/user_registration.mako
@@ -2,10 +2,9 @@
<%inherit file="base.mako"/>
<%def name="subject()" filter="n,trim">
-RhodeCode new user registration
+RhodeCode new user registration: ${user.username}
%def>
-## plain text version of the email. Empty by default
<%def name="body_plaintext()" filter="n,trim">
A new user `${user.username}` has registered on ${h.format_date(date)}
@@ -14,9 +13,15 @@ A new user `${user.username}` has regist
- Full Name: ${user.firstname} ${user.lastname}
- Email: ${user.email}
- Profile link: ${h.url('user_profile', username=user.username, qualified=True)}
+
+${self.plaintext_footer()}
%def>
## BODY GOES BELOW
-