19 declare(strict_types=1);
37 $mail =
new PHPMailer();
46 protected function setMailer(PHPMailer $mailer): void
69 foreach ($mail->
getTo() as $recipients) {
70 $recipient_pieces = array_filter(array_map(
'trim', explode(
',', $recipients)));
71 foreach ($recipient_pieces as $recipient) {
72 if (!$this->
getMailer()->addAddress($recipient)) {
78 foreach ($mail->
getCc() as $carbon_copies) {
79 $cc_pieces = array_filter(array_map(
'trim', explode(
',', $carbon_copies)));
80 foreach ($cc_pieces as $carbon_copy) {
81 if (!$this->
getMailer()->addCC($carbon_copy)) {
87 foreach ($mail->
getBcc() as $blind_carbon_copies) {
88 $bcc_pieces = array_filter(array_map(
'trim', explode(
',', $blind_carbon_copies)));
89 foreach ($bcc_pieces as $blind_carbon_copy) {
90 if (!$this->
getMailer()->addBCC($blind_carbon_copy)) {
98 if ($mail->
getFrom()->hasReplyToAddress()) {
99 if (!$this->
getMailer()->addReplyTo($mail->
getFrom()->getReplyToAddress(), $mail->
getFrom()->getReplyToName())) {
103 if ($mail->
getFrom()->hasEnvelopFromAddress()) {
107 if (!$this->
getMailer()->setFrom($mail->
getFrom()->getFromAddress(), $mail->
getFrom()->getFromName(),
false)) {
112 if (!$this->
getMailer()->addAttachment($attachment[
'path'], $attachment[
'name'])) {
118 if (!$this->
getMailer()->addEmbeddedImage($image[
'path'], $image[
'cid'], $image[
'name'])) {
133 "Trying to delegate external email delivery:" .
134 " Initiated by: %s (%s) " .
135 "| To: %s | CC: %s | BCC: %s | Subject: %s " .
137 "| ReplyTo: %s / %s " .
138 "| EnvelopeFrom: %s",
141 implode(
', ', $mail->
getTo()),
142 implode(
', ', $mail->
getCc()),
143 implode(
', ', $mail->
getBcc()),
145 $mail->
getFrom()->getFromAddress(),
146 $mail->
getFrom()->getFromName(),
147 $mail->
getFrom()->getReplyToAddress(),
148 $mail->
getFrom()->getReplyToName(),
149 $mail->
getFrom()->getEnvelopFromAddress()
153 ->debug(sprintf(
"Mail Alternative Body: %s", $this->
getMailer()->AltBody));
155 ->debug(sprintf(
"Mail Body: %s", $this->
getMailer()->Body));
159 $this->mailer->Debugoutput =
static function (
string $message, $level):
void {
161 strpos($message,
'Invalid address') ||
162 strpos($message,
'Message body empty')
174 ->info(
'Successfully delegated external mail delivery');
176 if ($this->
getMailer()->ErrorInfo !==
'') {
178 '... with most recent errors: %s',
184 'Could not deliver external email: %s',
189 $this->eventHandler->raise(
'Services/Mail',
'externalEmailDelegated', [
static getLogger(string $a_component_id)
Get component logger.
ilAppEventHandler $eventHandler
setMailer(PHPMailer $mailer)
__construct(ilSetting $settings, ilAppEventHandler $eventHandler)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Class ilMailMimeTransportBase.