mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-02 12:09:04 +01:00
Embed attached images of Notification html message as inline image
This commit is contained in:
parent
616c11c1fb
commit
324f0b664b
@ -104,6 +104,11 @@ class notifications_email implements notifications_iface {
|
|||||||
$this->mail->setFrom($this->sender->account_email, $this->sender->account_fullname);
|
$this->mail->setFrom($this->sender->account_email, $this->sender->account_fullname);
|
||||||
|
|
||||||
$this->mail->addHeader('Subject', trim($_subject)); // trim the subject to avoid strange wrong encoding problem
|
$this->mail->addHeader('Subject', trim($_subject)); // trim the subject to avoid strange wrong encoding problem
|
||||||
|
if ($_messages['html'])
|
||||||
|
{
|
||||||
|
// embed images as inline
|
||||||
|
\EGroupware\Api\Mail::processURL2InlineImages($this->mail, $body_html, null);
|
||||||
|
}
|
||||||
$this->mail->setHtmlBody($body_html, null, false); // no automatic alternativ
|
$this->mail->setHtmlBody($body_html, null, false); // no automatic alternativ
|
||||||
$this->mail->setBody($body_plain);
|
$this->mail->setBody($body_plain);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user