2008-09-25 17:15:33 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
2021-04-13 18:04:19 +02:00
|
|
|
* https://ldapsaisie.org
|
2008-09-25 17:15:33 +02:00
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2023-01-11 19:08:04 +01:00
|
|
|
// Error messages
|
2009-01-12 11:57:27 +01:00
|
|
|
|
|
|
|
// Support
|
2009-01-25 15:37:03 +01:00
|
|
|
LSerror :: defineError('MAIL_SUPPORT_01',
|
2020-08-25 17:31:50 +02:00
|
|
|
___("MAIL Support : Pear::MAIL is missing.")
|
2009-01-12 11:57:27 +01:00
|
|
|
);
|
2020-04-29 15:26:15 +02:00
|
|
|
LSerror :: defineError('MAIL_SUPPORT_02',
|
2020-08-25 17:31:50 +02:00
|
|
|
___("MAIL Support : Pear::MAIL_MIME is missing.")
|
2020-04-29 15:26:15 +02:00
|
|
|
);
|
2009-01-12 11:57:27 +01:00
|
|
|
|
2023-01-11 19:08:04 +01:00
|
|
|
// Other errors
|
2009-01-25 15:37:03 +01:00
|
|
|
LSerror :: defineError('MAIL_00',
|
2020-08-25 17:31:50 +02:00
|
|
|
___("MAIL Error : %{msg}")
|
2009-01-12 11:57:27 +01:00
|
|
|
);
|
|
|
|
|
2009-01-25 15:37:03 +01:00
|
|
|
LSerror :: defineError('MAIL_01',
|
2020-08-25 17:31:50 +02:00
|
|
|
___("MAIL : Error sending your email")
|
2009-01-12 11:57:27 +01:00
|
|
|
);
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
/**
|
|
|
|
* Check support of this LSaddon
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @return boolean true if this LSaddon is fully supported, false otherwise
|
|
|
|
*/
|
|
|
|
function LSaddon_mail_support() {
|
|
|
|
$retval=true;
|
|
|
|
|
|
|
|
// Lib dependencies (check/load)
|
|
|
|
if (!class_exists('Mail')) {
|
|
|
|
if(!LSsession::includeFile(PEAR_MAIL, true)) {
|
|
|
|
LSerror :: addErrorCode('MAIL_SUPPORT_01');
|
|
|
|
$retval=false;
|
2008-09-25 17:15:33 +02:00
|
|
|
}
|
2023-06-20 19:42:12 +02:00
|
|
|
}
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
if (!class_exists('Mail_mime')) {
|
|
|
|
if(!LSsession::includeFile(PEAR_MAIL_MIME, true)) {
|
|
|
|
LSerror :: addErrorCode('MAIL_SUPPORT_02');
|
|
|
|
$retval=false;
|
2020-04-29 15:26:15 +02:00
|
|
|
}
|
2008-09-25 17:15:33 +02:00
|
|
|
}
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
if ($retval)
|
|
|
|
LScli :: add_command(
|
|
|
|
'test_send_mail',
|
|
|
|
'cli_test_send_mail',
|
|
|
|
'Send a test email',
|
|
|
|
"[-s subject] [-b body] [recipient]",
|
|
|
|
array (
|
|
|
|
" -s/--subject The test email subject (optional)",
|
|
|
|
" -b/--body The test email body (optional)",
|
|
|
|
" recipient The test email recipient (required)",
|
|
|
|
),
|
|
|
|
false, // This command does not need LDAP connection
|
|
|
|
'cli_test_send_mail_autocompleter'
|
2023-01-11 19:08:04 +01:00
|
|
|
);
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
return $retval;
|
|
|
|
}
|
2012-09-07 13:33:57 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
/**
|
|
|
|
* Send an email
|
|
|
|
*
|
|
|
|
* @param string|array<string> $to Email recipient(s)
|
|
|
|
* @param string $subject Email subject
|
|
|
|
* @param string $msg Email body
|
|
|
|
* @param array<string,string>|null $headers Email headers
|
|
|
|
* @param array<string,string>|null $attachments Email attachments as an array with
|
|
|
|
* filepath as key and filename as value
|
|
|
|
* @param string|null $eol End of line string (default : \n)
|
|
|
|
* @param string|null $encoding Email encoding (default: utf8)
|
|
|
|
* @param boolean $html Set to true to send an HTML email (default: false)
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*
|
|
|
|
* @return boolean true si MAIL est pleinement supporté, false sinon
|
|
|
|
*/
|
|
|
|
function sendMail($to, $subject, $msg, $headers=null, $attachments=null,
|
|
|
|
$eol=null, $encoding=null, $html=false) {
|
|
|
|
global $MAIL_SEND_PARAMS, $MAIL_HEARDERS, $MAIL_CATCH_ALL;
|
|
|
|
$mail_obj = Mail::factory(MAIL_SEND_METHOD, (isset($MAIL_SEND_PARAMS)?$MAIL_SEND_PARAMS:null));
|
|
|
|
$logger = LSlog :: get_logger('LSaddon_mail');
|
|
|
|
|
|
|
|
if (!$headers) $headers = array();
|
|
|
|
if (isset($MAIL_HEARDERS) && is_array($MAIL_HEARDERS)) {
|
|
|
|
$headers = array_merge($headers,$MAIL_HEARDERS);
|
|
|
|
}
|
|
|
|
$logger -> trace(
|
|
|
|
'Mail catch all: '.(
|
|
|
|
isset($MAIL_CATCH_ALL) && $MAIL_CATCH_ALL?
|
|
|
|
varDump($MAIL_CATCH_ALL):'not set')
|
|
|
|
);
|
|
|
|
if (isset($MAIL_CATCH_ALL) && $MAIL_CATCH_ALL) {
|
|
|
|
$logger -> debug(
|
|
|
|
'Mail catch to '.
|
|
|
|
(is_array($MAIL_CATCH_ALL)?implode(',', $MAIL_CATCH_ALL):$MAIL_CATCH_ALL)
|
2012-09-07 13:33:57 +02:00
|
|
|
);
|
2023-06-20 19:42:12 +02:00
|
|
|
$msg .= sprintf(
|
|
|
|
(
|
|
|
|
$html?
|
|
|
|
_("</hr><p><small>Mail initialy intended for %s.</small></p>"):
|
|
|
|
_("\n\n\nMail initialy intended for %s.")
|
|
|
|
),
|
|
|
|
(is_array($to)?implode(',', $to):$to));
|
|
|
|
$to = (
|
|
|
|
is_array($MAIL_CATCH_ALL)?
|
|
|
|
implode(',', $MAIL_CATCH_ALL):$MAIL_CATCH_ALL
|
2020-04-29 15:26:15 +02:00
|
|
|
);
|
2023-06-20 19:42:12 +02:00
|
|
|
}
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
if (isset($headers['From'])) {
|
|
|
|
$from = $headers['From'];
|
|
|
|
unset($headers['From']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$from = LSsession :: getEmailSender();
|
|
|
|
}
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
$headers["To"] = $to;
|
|
|
|
|
|
|
|
$to = array (
|
|
|
|
'To' => $to
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach(array_keys($headers) as $header) {
|
|
|
|
if(in_array(strtoupper($header), array('BCC', 'CC'))) {
|
|
|
|
if (isset($MAIL_CATCH_ALL) && $MAIL_CATCH_ALL) {
|
|
|
|
$logger -> debug("Mail catched: remove $header header");
|
|
|
|
$msg .= sprintf(
|
|
|
|
(
|
|
|
|
$html?
|
|
|
|
_("<p><small>%s: %s</small></p>"):
|
|
|
|
_("\n%s: %s")
|
|
|
|
),
|
|
|
|
strtoupper($header),
|
|
|
|
(is_array($headers[$header])?implode(',', $headers[$header]):$headers[$header]));
|
|
|
|
unset($headers[$header]);
|
|
|
|
continue;
|
2020-04-29 15:26:15 +02:00
|
|
|
}
|
2023-06-20 19:42:12 +02:00
|
|
|
$to[strtoupper($header)] = $headers[$header];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$encoding) $encoding = "utf8";
|
|
|
|
$mime = new Mail_mime(
|
|
|
|
array(
|
|
|
|
'eol' => ($eol?$eol:"\n"),
|
|
|
|
($html?'html_charset':'text_charset') => $encoding,
|
|
|
|
'head_charset' => $encoding,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($from)
|
|
|
|
$mime->setFrom($from);
|
|
|
|
|
|
|
|
if ($subject)
|
|
|
|
$mime->setSubject($subject);
|
|
|
|
|
|
|
|
if ($html)
|
|
|
|
$mime->setHTMLBody($msg);
|
|
|
|
else
|
|
|
|
$mime->setTXTBody($msg);
|
|
|
|
|
|
|
|
if (is_array($attachments) && !empty($attachments)) {
|
|
|
|
$finfo = new finfo(FILEINFO_MIME_TYPE);
|
|
|
|
foreach ($attachments as $file => $filename) {
|
|
|
|
$mime->addAttachment($file, $finfo->file($file), $filename);
|
2020-04-29 15:26:15 +02:00
|
|
|
}
|
2023-06-20 19:42:12 +02:00
|
|
|
}
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
$body = $mime->get();
|
|
|
|
$headers = $mime->headers($headers);
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
$ret = $mail_obj -> send($to, $headers, $body);
|
2020-04-29 15:26:15 +02:00
|
|
|
|
2023-06-20 19:42:12 +02:00
|
|
|
if ($ret instanceof PEAR_Error) {
|
|
|
|
LSerror :: addErrorCode('MAIL_01');
|
|
|
|
LSerror :: addErrorCode('MAIL_00', $ret -> getMessage());
|
|
|
|
return false;
|
2008-09-25 17:15:33 +02:00
|
|
|
}
|
2023-06-20 19:42:12 +02:00
|
|
|
return true;
|
|
|
|
}
|
2020-11-17 11:26:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
if (php_sapi_name() != 'cli')
|
2020-11-17 17:47:50 +01:00
|
|
|
return true;
|
2020-11-17 11:26:06 +01:00
|
|
|
|
2023-01-02 01:17:46 +01:00
|
|
|
/**
|
|
|
|
* CLI command to send a test email
|
|
|
|
* @param array $command_args Command arguments
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-11-17 11:26:06 +01:00
|
|
|
function cli_test_send_mail($command_args) {
|
|
|
|
$recipient = null;
|
|
|
|
$subject = "Test email";
|
|
|
|
$body = "This is a test message.";
|
|
|
|
for ($i=0; $i < count($command_args); $i++) {
|
|
|
|
switch ($command_args[$i]) {
|
|
|
|
case '--subject':
|
|
|
|
case '-s':
|
|
|
|
$i++;
|
|
|
|
if (!isset($command_args[$i]))
|
|
|
|
LScli :: usage("You must provide the email subject after -s/--subject parameter.");
|
|
|
|
$subject = $command_args[$i];
|
|
|
|
if (!$subject)
|
|
|
|
LScli :: usage("Invalid subject provided.");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '--body':
|
|
|
|
case '-b':
|
|
|
|
$i++;
|
|
|
|
if (!isset($command_args[$i]))
|
|
|
|
LScli :: usage("You must provide the email body after -b/--body parameter.");
|
|
|
|
$body = $command_args[$i];
|
|
|
|
if (!$body)
|
|
|
|
LScli :: usage("Invalid body provided.");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (!$recipient && checkEmail($command_args[$i]))
|
|
|
|
$recipient = $command_args[$i];
|
|
|
|
else
|
|
|
|
LScli :: usage("Invalid parameter '".$command_args[$i]."'.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$recipient)
|
|
|
|
LScli :: usage("You must provide test email recipient as first positional parameter");
|
|
|
|
|
|
|
|
$logger = LSlog :: get_logger('LSaddon_mail');
|
|
|
|
if (!sendMail($recipient, $subject, $body)) {
|
|
|
|
$logger -> error("Fail to send test email sent to '$recipient'.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$logger -> info("Test email sent to '$recipient'.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-02 01:17:46 +01:00
|
|
|
/**
|
|
|
|
* Args autocompleter for CLI test_send_mail command
|
|
|
|
*
|
|
|
|
* @param array<string> $comp_words List of already typed words of the command
|
|
|
|
* @param int $comp_word_num The command word number to autocomplete
|
|
|
|
* @param string $comp_word The command word to autocomplete
|
|
|
|
* @param array<string> $opts List of global available options
|
|
|
|
*
|
|
|
|
* @return array<string> List of available options for the word to autocomplete
|
|
|
|
**/
|
2020-11-17 11:26:06 +01:00
|
|
|
function cli_test_send_mail_autocompleter($comp_words, $comp_word_num, $comp_word, $opts) {
|
|
|
|
switch ($comp_words[$comp_word_num-1]) {
|
|
|
|
case '-s':
|
|
|
|
case '--subject':
|
|
|
|
case '-b':
|
|
|
|
case '--body':
|
|
|
|
return array();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$opts = array_merge(
|
|
|
|
$opts,
|
|
|
|
array (
|
|
|
|
'-s', '--subject',
|
|
|
|
'-b', '--body',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
return LScli :: autocomplete_opts($opts, $comp_word);
|
|
|
|
}
|