1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-31 02:10:37 +02:00

Email Templates Plugin - Email Templates - Added #2

This commit is contained in:
Awilum
2014-01-12 20:39:25 +02:00
parent d2ab853939
commit f9ec0b9e18
3 changed files with 37 additions and 0 deletions

View File

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

View File

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

View File

@@ -0,0 +1,17 @@
Dear <?php echo $user_login; ?>,
<br><br>
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.
<br><br>
To reset your password, please visit the following page:<br>
<a href="<?php echo $site_url; ?>/users/password-reset?hash=<?php echo $new_hash; ?>" style="color:#333; text-decoration:underline;"><?php echo $site_url; ?>/users/password-reset?hash=<?php echo $new_hash; ?></a>
<br><br>
When you visit that page, your password will be reset, and the new password will be emailed to you.
<br><br>
Your username is: <?php echo $user_login; ?>
<br><br>
To edit your profile, go to this page:<br>
<a href="<?php echo $site_url ?>/users/<?php echo $user_id; ?>" style="color:#333; text-decoration:underline;"><?php echo $site_url ?>/users/<?php echo $user_id; ?></a>
<br><br>
All the best,<br>
<?php echo $site_name; ?>