Add improvements

This commit is contained in:
Philipp Holzer 2020-09-19 22:49:44 +02:00
부모 ac1d2cf38f
커밋 c41614fef1
No known key found for this signature in database
GPG 키 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;
}