]> git.mxchange.org Git - friendica-addons.git/blob - securemail/SecureTestEmail.php
Merge pull request '[bluesky] Fix double dollar sign in bluesky_fetch_notifications...
[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\Capability\IManageConfigValues;
27 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
28 use Friendica\DI;
29 use Friendica\Model\User;
30 use Friendica\Object\Email;
31
32 /**
33  * Class for creating a Test email for the securemail addon
34  */
35 class SecureTestEmail extends Email
36 {
37         public function __construct(IManageConfigValues $config, IManagePersonalConfigValues $pConfig, BaseURL $baseUrl)
38         {
39                 $sitename = $config->get('config', 'sitename');
40
41                 $hostname = $baseUrl->getHost();
42                 if (strpos($hostname, ':')) {
43                         $hostname = substr($hostname, 0, strpos($hostname, ':'));
44                 }
45
46                 $sender_email = $config->get('config', 'sender_email');
47                 if (empty($sender_email)) {
48                         $sender_email = 'noreply@' . $hostname;
49                 }
50
51                 $user = User::getById(DI::userSession()->getLocalUserId());
52
53                 $subject = 'Friendica - Secure Mail - Test';
54                 $message = 'This is a test message from your Friendica Secure Mail addon.';
55
56                 // enable addon for test
57                 $pConfig->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', 1);
58
59                 parent::__construct($sitename, $sender_email, $sender_email, $user['email'],
60                         $subject, "<p>{$message}</p>", $message,
61                         [], DI::userSession()->getLocalUserId());
62         }
63 }