Skip to content

Commit

Permalink
Cast headers to string.
Browse files Browse the repository at this point in the history
  • Loading branch information
frqnck committed Sep 23, 2015
1 parent 3aeecb7 commit b4242db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Logger/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct($email, $headers = null)

$this->destination = $email;
$this->type = static::MAIL;
$this->headers = $headers;
$this->headers = (string) $headers;
}

}

0 comments on commit b4242db

Please sign in to comment.