-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MimePart: fixed not escaped header before encoded into utf-8
- Loading branch information
1 parent
d998397
commit 0f3a919
Showing
2 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ require __DIR__ . '/Mail.php'; | |
|
||
$mail = new Message; | ||
|
||
$mail->setFrom('John Doe <[email protected]>'); | ||
$mail->setFrom('Kdo uteče, obědvá <[email protected]>'); | ||
|
||
$mail->addTo('Lady Jane <[email protected]>'); | ||
$mail->addCc('[email protected]'); | ||
|
@@ -37,7 +37,7 @@ Assert::match(<<<'EOD' | |
MIME-Version: 1.0 | ||
X-Mailer: Nette Framework | ||
Date: %a% | ||
From: John Doe <[email protected]> | ||
From: =?UTF-8?B?IktkbyB1dGXEjWUsIG9ixJtkdsOhIg==?= <[email protected]> | ||
To: Lady Jane <[email protected]> | ||
Cc: [email protected] | ||
Bcc: [email protected] | ||
|