mail2log/_define.php

45 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2022-11-27 00:56:22 +00:00
<?php
/**
* @brief mail2log, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-10-07 21:25:54 +00:00
use Dotclear\App;
2022-11-27 00:56:22 +00:00
$this->registerModule(
2023-03-11 16:14:04 +00:00
'Mail to log',
2022-11-27 00:56:22 +00:00
'Do not send mails but log them',
'Jean-Christian Denis and contributors',
2023-10-07 21:25:54 +00:00
'0.6',
2022-11-27 00:56:22 +00:00
[
2023-10-07 21:25:54 +00:00
'requires' => [['core', '2.28']],
'permissions' => App::auth()->makePermissions([
App::auth()::PERMISSION_USAGE,
2022-12-03 20:34:22 +00:00
]),
2023-03-11 16:14:04 +00:00
'type' => 'plugin',
2023-08-13 15:27:10 +00:00
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
2022-11-27 00:56:22 +00:00
]
);
2023-03-11 16:14:04 +00:00
if (!function_exists('\_mail')) {
2023-06-17 09:13:58 +00:00
function _mail(string $to, string $subject, string $message, $headers = '', ?string $params = null): bool
2023-03-11 16:14:04 +00:00
{
2023-06-17 09:13:58 +00:00
$headers = is_array($headers) ? implode("\n\t", $headers) : (is_string($headers) ? $headers : '');
2023-03-11 16:14:04 +00:00
2023-10-07 21:25:54 +00:00
$cur = App::log()->openLogCursor();
2023-04-24 13:48:48 +00:00
$cur->setField('log_table', basename(__DIR__));
$cur->setField('log_msg', sprintf("%s\n-----\n To: %s\n Subject: %s\n-----\n Message:\n%s\n", $headers, $to, $subject, $message));
2023-10-07 21:25:54 +00:00
App::log()->addLog($cur);
2023-03-11 16:14:04 +00:00
return true;
}
}