-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-password_en.php
38 lines (36 loc) · 1.72 KB
/
new-password_en.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* ZnetDK, Starter Web Application for rapid & easy development
* See official website https://mobile.znetdk.fr
* Copyright (C) 2024 Pascal MARTINEZ ([email protected])
* License GNU GPL https://www.gnu.org/licenses/gpl-3.0.html GNU GPL
* --------------------------------------------------------------------
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* --------------------------------------------------------------------
* ZnetDK 4 Mobile Email Sending module template : email sent to give new
* temporary password (English version)
*
* File version: 1.0
* Last update: 05/17/2024
*/
// Email subject
$this->templateSubject = '[[**application_name**]]: new temporary password';
// Email message body
$this->templateBody = <<<'EOT'
<div style="font-family:Arial,Helvetica,sans-serif;font-size:14px;">
<p>Hello [[user_name]],</p>
<p>Here is you new <i>temporary password</i> to login to the [[**application_name**]] application: <b>[[password_in_clear]]</b>.</p>
<p>For security purpose, your password <i>will have to be renewed</i> after your first connection to the application.</p>
<p>Regards,</p>
<p>[[**sender_name**]]</p>
</div>
EOT;