blob: f64db8c0b3fc9c9e1770d4daea43a919f330616d [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",
25 "text" => "Your password was chanegd successfully. If this wasn't you please contact support",
26 "html" => "<html><body>
27 <h3>Your password was chanegd successfully. If this wasn't you please contact support</h3>
28 </body></html>"
29];