Add improvements

This commit is contained in:
Philipp Holzer 2020-09-19 22:49:44 +02:00
父節點 ac1d2cf38f
當前提交 c41614fef1
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 9A28B7D4FF5667BD
共有 1 個文件被更改,包括 1 次插入2 次删除

查看文件

@ -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;
}