19 declare(strict_types=1);
32 $mail =
new PHPMailer();
41 protected function setMailer(PHPMailer $mailer): void
64 foreach ($mail->
getTo() as $recipients) {
65 $recipient_pieces = array_filter(
array_map(
'trim', explode(
',', $recipients)));
66 foreach ($recipient_pieces as $recipient) {
67 if (!$this->
getMailer()->addAddress($recipient)) {
73 foreach ($mail->
getCc() as $carbon_copies) {
74 $cc_pieces = array_filter(
array_map(
'trim', explode(
',', $carbon_copies)));
75 foreach ($cc_pieces as $carbon_copy) {
76 if (!$this->
getMailer()->addCC($carbon_copy)) {
82 foreach ($mail->
getBcc() as $blind_carbon_copies) {
83 $bcc_pieces = array_filter(
array_map(
'trim', explode(
',', $blind_carbon_copies)));
84 foreach ($bcc_pieces as $blind_carbon_copy) {
85 if (!$this->
getMailer()->addBCC($blind_carbon_copy)) {
93 if ($mail->
getFrom()->hasReplyToAddress() && !$this->
getMailer()->addReplyTo(
94 $mail->
getFrom()->getReplyToAddress(),
95 $mail->
getFrom()->getReplyToName()
99 if ($mail->
getFrom()->hasEnvelopFromAddress()) {
103 if (!$this->
getMailer()->setFrom($mail->
getFrom()->getFromAddress(), $mail->
getFrom()->getFromName(),
false)) {
108 if (!$this->
getMailer()->addAttachment($attachment[
'path'], $attachment[
'name'])) {
114 if (!$this->
getMailer()->addEmbeddedImage($image[
'path'], $image[
'cid'], $image[
'name'])) {
129 "Trying to delegate external email delivery:" .
130 " Initiated by: %s (%s) " .
131 "| To: %s | CC: %s | BCC: %s | Subject: %s " .
133 "| ReplyTo: %s / %s " .
134 "| EnvelopeFrom: %s",
137 implode(
', ', $mail->
getTo()),
138 implode(
', ', $mail->
getCc()),
139 implode(
', ', $mail->
getBcc()),
141 $mail->
getFrom()->getFromAddress(),
142 $mail->
getFrom()->getFromName(),
143 $mail->
getFrom()->getReplyToAddress(),
144 $mail->
getFrom()->getReplyToName(),
145 $mail->
getFrom()->getEnvelopFromAddress()
149 ->debug(sprintf(
"Mail Alternative Body: %s", $this->
getMailer()->AltBody));
151 ->debug(sprintf(
"Mail Body: %s", $this->
getMailer()->Body));
155 $this->mailer->Debugoutput =
static function (
string $message, $level):
void {
157 strpos($message,
'Invalid address') ||
158 strpos($message,
'Message body empty')
170 ->info(
'Successfully delegated external mail delivery');
172 if ($this->
getMailer()->ErrorInfo !==
'') {
174 '... with most recent errors: %s',
180 'Could not deliver external email: %s',
185 $this->eventHandler->raise(
'components/ILIAS/Mail',
'externalEmailDelegated', [
static getLogger(string $a_component_id)
Get component logger.
setMailer(PHPMailer $mailer)
Interface ilMailMimeTransport.
Class ilMailMimeTransportBase.
__construct(protected ilSetting $settings, private readonly ilAppEventHandler $eventHandler)