blob: 2516d25f7faef61358eb6597dc16d2bfc18def7b [file] [log] [blame]
matheusfillipef43dd962021-05-13 23:27:01 -03001<?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 Kupietzb527e642023-02-23 10:04:21 +010025 "text" => "Your password was changed successfully. If this wasn't you please contact support",
matheusfillipef43dd962021-05-13 23:27:01 -030026 "html" => "<html><body>
Marc Kupietzb527e642023-02-23 10:04:21 +010027 <h3>Your password was changed successfully. If this wasn't you please contact support</h3>
matheusfillipef43dd962021-05-13 23:27:01 -030028 </body></html>"
29];