mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-11 14:38:39 +00:00
continue mail implementation
This commit is contained in:
parent
1ec7e62756
commit
340ea049eb
|
|
@ -434,8 +434,9 @@ class Mail
|
||||||
'name' => $name,
|
'name' => $name,
|
||||||
'encoding' => $encoding,
|
'encoding' => $encoding,
|
||||||
'type' => $type,
|
'type' => $type,
|
||||||
|
'string' => false,
|
||||||
'disposition' => $disposition,
|
'disposition' => $disposition,
|
||||||
'???' => $name,
|
'id' => $name,
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->setMessageType();
|
$this->setMessageType();
|
||||||
|
|
@ -997,7 +998,39 @@ class Mail
|
||||||
$incl = [];
|
$incl = [];
|
||||||
|
|
||||||
foreach ($this->attachment as $attach) {
|
foreach ($this->attachment as $attach) {
|
||||||
|
if ($attach['disposition'] === $disposition) {
|
||||||
|
$text = '';
|
||||||
|
$path = '';
|
||||||
|
$isString = $attach['string'];
|
||||||
|
|
||||||
|
if (!empty($isString)) {
|
||||||
|
$text = $attach['path'];
|
||||||
|
} else {
|
||||||
|
$path = $attach['path'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$hash = \hash('sha256', \serialize($attach));
|
||||||
|
if (\in_array($hash, $incl, true)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$incl[] = $hash;
|
||||||
|
|
||||||
|
if ($attach['disposition'] && isset($cid[$attach['id']])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$cid[$attach['id']] = true;
|
||||||
|
$mime[] = '--' . $boundary . $this->endOfLine;
|
||||||
|
$mime[] = !empty($attach['name'])
|
||||||
|
? 'Content-Type: ' . $attach['type'] . '; name="' . $this->encodeHeader($this->secureHeader($attach['name'])) . '"' . $this->endOfLine
|
||||||
|
: 'Content-Type: ' . $attach['type'] . $this->endOfLine;
|
||||||
|
|
||||||
|
if ($attach['encoding'] !== EncodingType::E_7BIT) {
|
||||||
|
$mime[] = 'Content-Transfer-Encoding: ' . $attach['encoding'] . $this->endOfLine;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$mime[] = '--' . $boundary . '--' . $this->endOfLine;
|
$mime[] = '--' . $boundary . '--' . $this->endOfLine;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user