Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #7506 from Maks3w/hotfix/mail-utf8
Browse files Browse the repository at this point in the history
[mail] Fix set UTF-8 values to headers. Fix #7501
  • Loading branch information
weierophinney committed May 8, 2015
2 parents 618cbcc + 330a64c commit 901ed4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ZendTest/Mail/Transport/FileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function getMessage()
->addBcc('zf-crteam@lists.zend.com', 'CR-Team, ZF Project')
->addFrom(array(
'zf-devteam@zend.com',
'Matthew' => 'matthew@zend.com',
'matthew@zend.com' => 'Matthew',
))
->setSender('ralph.schindler@zend.com', 'Ralph Schindler')
->setSubject('Testing Zend\Mail\Transport\Sendmail')
Expand Down
2 changes: 1 addition & 1 deletion tests/ZendTest/Mail/Transport/InMemoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function getMessage()
->addBcc('zf-crteam@lists.zend.com', 'CR-Team, ZF Project')
->addFrom(array(
'zf-devteam@zend.com',
'Matthew' => 'matthew@zend.com',
'matthew@zend.com' => 'Matthew',
))
->setSender('ralph.schindler@zend.com', 'Ralph Schindler')
->setSubject('Testing Zend\Mail\Transport\Sendmail')
Expand Down

0 comments on commit 901ed4a

Please sign in to comment.