Comment change
[friendica-addons.git/.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\Object\Email;
29
30 /**
31  * Class for creating a Test email for the securemail addon
32  */
33 class SecureTestEmail extends Email
34 {
35         public function __construct(App $a, IConfig $config, IPConfig $pConfig, BaseURL $baseUrl)
36         {
37                 $sitename = $config->get('config', 'sitename');
38
39                 $hostname = $baseUrl->getHostname();
40                 if (strpos($hostname, ':')) {
41                         $hostname = substr($hostname, 0, strpos($hostname, ':'));
42                 }
43
44                 $sender_email = $config->get('config', 'sender_email');
45                 if (empty($sender_email)) {
46                         $sender_email = 'noreply@' . $hostname;
47                 }
48
49                 $subject = 'Friendica - Secure Mail - Test';
50                 $message = 'This is a test message from your Friendica Secure Mail addon.';
51
52                 // enable addon for test
53                 $pConfig->set(local_user(), 'securemail', 'enable', 1);
54
55                 parent::__construct($sitename, $sender_email, $sender_email, $a->user['email'],
56                         $subject, "<p>{$message}</p>", $message,
57                         [], local_user());
58         }
59 }