matheusfillipe | f43dd96 | 2021-05-13 23:27:01 -0300 | [diff] [blame] | 1 | <?php |
| 2 | $MAIL_TEMPLATE = (object)[ |
| 3 | "subject" => "Confirm your email", |
| 4 | "text" => "To complete your registration please paste this to your browser: {{url}}", |
| 5 | "html" => "<html><body> |
| 6 | <h2>Almost there! Click on the link bellow to confirm your email address</h2> |
| 7 | <a href='{{url}}'>Confirm</a> |
| 8 | </body></html>" |
| 9 | ]; |
| 10 | |
| 11 | |
| 12 | $RECOVERY_EMAIL_TEMPLATE = (object)[ |
| 13 | "subject" => "Change your password!", |
| 14 | "text" => "Seems you requested a password change. If that wasn't you please ignore this message. Otherwise go to this url to change your password: {{url}}", |
| 15 | "html" => "<html><body> |
| 16 | <h3>Seems you requested a password change. If that wasn't you please ignore this message. Otherwise go to this url to change your password</h3> |
| 17 | <a href='{{url}}'>Click here</a> to change your password |
| 18 | </body></html>" |
| 19 | ]; |
| 20 | |
| 21 | |
| 22 | // Add the support email there |
| 23 | $PASSWORD_CHANGED_EMAIL_TEMPLATE = (object)[ |
| 24 | "subject" => "Your password was changed", |
Marc Kupietz | b527e64 | 2023-02-23 10:04:21 +0100 | [diff] [blame^] | 25 | "text" => "Your password was changed successfully. If this wasn't you please contact support", |
matheusfillipe | f43dd96 | 2021-05-13 23:27:01 -0300 | [diff] [blame] | 26 | "html" => "<html><body> |
Marc Kupietz | b527e64 | 2023-02-23 10:04:21 +0100 | [diff] [blame^] | 27 | <h3>Your password was changed successfully. If this wasn't you please contact support</h3> |
matheusfillipe | f43dd96 | 2021-05-13 23:27:01 -0300 | [diff] [blame] | 28 | </body></html>" |
| 29 | ]; |