This commit is contained in:
Philipp Holzer 2020-09-19 22:49:44 +02:00
parent ac1d2cf38f
commit c41614fef1
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 9A28B7D4FF5667BD
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni

Vedi File

@ -184,8 +184,7 @@ abstract class MailBuilder
*/
public function setHeader(string $name, string $value)
{
$this->headers[$name] = [];
$this->headers[$name][] = $value;
$this->headers[$name] = [$value];
return $this;
}