Email: Fix handling multiple recipients

This commit is contained in:
Benjamin Renard 2024-02-19 20:28:55 +01:00
parent 4907442122
commit fb67ffdf3b
Signed by: bn8
GPG key ID: 3E2E1CE1907115BC

View file

@ -125,9 +125,7 @@ class Email {
$headers["To"] = $to;
$to = array (
'To' => $to
);
$to = ensure_is_array($to);
foreach(array_keys($headers) as $header) {
if(in_array(strtoupper($header), array('BCC', 'CC'))) {
@ -144,7 +142,7 @@ class Email {
unset($headers[$header]);
continue;
}
$to[strtoupper($header)] = $headers[$header];
$to = array_merge($to, $headers[$header]);
}
}