2020-01-26 14:23:58 -05:00
|
|
|
<?php
|
2020-02-09 09:45:35 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2020-01-26 14:23:58 -05:00
|
|
|
|
|
|
|
namespace Friendica\Addon\securemail;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\App\BaseURL;
|
2021-10-26 15:44:28 -04:00
|
|
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
|
|
|
use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
|
2021-08-08 13:10:04 -04:00
|
|
|
use Friendica\Model\User;
|
2020-01-26 17:47:15 -05:00
|
|
|
use Friendica\Object\Email;
|
2020-01-26 14:23:58 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for creating a Test email for the securemail addon
|
|
|
|
*/
|
2020-01-26 17:47:15 -05:00
|
|
|
class SecureTestEmail extends Email
|
2020-01-26 14:23:58 -05:00
|
|
|
{
|
2021-10-26 15:44:28 -04:00
|
|
|
public function __construct(App $a, IManageConfigValues $config, IManagePersonalConfigValues $pConfig, BaseURL $baseUrl)
|
2020-01-26 14:23:58 -05:00
|
|
|
{
|
|
|
|
$sitename = $config->get('config', 'sitename');
|
|
|
|
|
|
|
|
$hostname = $baseUrl->getHostname();
|
|
|
|
if (strpos($hostname, ':')) {
|
|
|
|
$hostname = substr($hostname, 0, strpos($hostname, ':'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$sender_email = $config->get('config', 'sender_email');
|
|
|
|
if (empty($sender_email)) {
|
|
|
|
$sender_email = 'noreply@' . $hostname;
|
|
|
|
}
|
|
|
|
|
2021-08-08 13:10:04 -04:00
|
|
|
$user = User::getById(local_user());
|
|
|
|
|
2020-01-26 14:23:58 -05:00
|
|
|
$subject = 'Friendica - Secure Mail - Test';
|
|
|
|
$message = 'This is a test message from your Friendica Secure Mail addon.';
|
|
|
|
|
|
|
|
// enable addon for test
|
|
|
|
$pConfig->set(local_user(), 'securemail', 'enable', 1);
|
|
|
|
|
2021-08-08 13:10:04 -04:00
|
|
|
parent::__construct($sitename, $sender_email, $sender_email, $user['email'],
|
2020-01-26 14:23:58 -05:00
|
|
|
$subject, "<p>{$message}</p>", $message,
|
2020-09-19 14:14:55 -04:00
|
|
|
[], local_user());
|
2020-01-26 14:23:58 -05:00
|
|
|
}
|
|
|
|
}
|