]> git.mxchange.org Git - friendica-addons.git/blob - securemail/SecureTestEmail.php
Remove the use of app function
[friendica-addons.git] / securemail / SecureTestEmail.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Addon\securemail;
23
24 use Friendica\App;
25 use Friendica\App\BaseURL;
26 use Friendica\Core\Config\IConfig;
27 use Friendica\Core\PConfig\IPConfig;
28 use Friendica\Model\User;
29 use Friendica\Object\Email;
30
31 /**
32  * Class for creating a Test email for the securemail addon
33  */
34 class SecureTestEmail extends Email
35 {
36         public function __construct(App $a, IConfig $config, IPConfig $pConfig, BaseURL $baseUrl)
37         {
38                 $sitename = $config->get('config', 'sitename');
39
40                 $hostname = $baseUrl->getHostname();
41                 if (strpos($hostname, ':')) {
42                         $hostname = substr($hostname, 0, strpos($hostname, ':'));
43                 }
44
45                 $sender_email = $config->get('config', 'sender_email');
46                 if (empty($sender_email)) {
47                         $sender_email = 'noreply@' . $hostname;
48                 }
49
50                 $user = User::getById(local_user());
51
52                 $subject = 'Friendica - Secure Mail - Test';
53                 $message = 'This is a test message from your Friendica Secure Mail addon.';
54
55                 // enable addon for test
56                 $pConfig->set(local_user(), 'securemail', 'enable', 1);
57
58                 parent::__construct($sitename, $sender_email, $sender_email, $user['email'],
59                         $subject, "<p>{$message}</p>", $message,
60                         [], local_user());
61         }
62 }