1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-08 06:06:53 +02:00

Users Plugin: New html email template added. PHPMailer class used.

This commit is contained in:
Awilum
2013-01-19 23:55:20 +02:00
parent b050af69d1
commit 514815a559
8 changed files with 296 additions and 54 deletions

View File

@@ -1,12 +0,0 @@
Dear <?php echo $user_login ?>,
As you requested, your password has now been reset. Your new details are as follows:
Username: <?php echo $user_login; ?>
Password: <?php echo $new_password; ?>
To change your password, please visit this page: <?php echo $site_url; ?>users/<?php echo $user_id; ?>
All the best,
<?php echo $site_name; ?>

View File

@@ -1,8 +0,0 @@
Welcome to <?php echo $site_name; ?>!
Dear <?php echo $user_login; ?>,
Thanks for registering at <?php echo $site_name; ?>! We are glad you have chosen to be a part of our community and we hope you enjoy your stay.
All the best,
<?php echo $site_name; ?>

View File

@@ -1,17 +0,0 @@
Dear <?php echo $user_login; ?>,
You have requested to reset your password on <?php echo $site_name; ?> because you have forgotten your password.
If you did not request this, please ignore it.
To reset your password, please visit the following page:
<?php echo $site_url; ?>users/password-reset?hash=<?php echo $new_hash; ?>
When you visit that page, your password will be reset, and the new password will be emailed to you.
Your username is: <?php echo $user_login; ?>
To edit your profile, go to this page:
<?php echo $site_url ?>users/<?php echo $user_id; ?>
All the best,
<?php echo $site_name; ?>