We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 3.3.0
formatEmail save name wrapped in quotes
formatEmail
mail/src/Mail/Message.php
Line 144 in 4c1a770
$message->formatEmail('"Winter Silence" <info@site.com>'); add address ['name' => '"Winter Silence"', 'email' => 'info@site.com']
$message->formatEmail('"Winter Silence" <info@site.com>');
['name' => '"Winter Silence"', 'email' => 'info@site.com']
fix regexp: '#^"?(.+)"?\s+<(.*)>\z#'
'#^"?(.+)"?\s+<(.*)>\z#'
The text was updated successfully, but these errors were encountered:
ebd49c3
Message: added support for quoted "display-name" <email> [Closes #64]
c89efa0
see https://tools.ietf.org/html/rfc2822
89f8fd0
@dg 👍
Sorry, something went wrong.
No branches or pull requests
Version: 3.3.0
Bug Description
formatEmail
save name wrapped in quotesmail/src/Mail/Message.php
Line 144 in 4c1a770
Steps To Reproduce
$message->formatEmail('"Winter Silence" <info@site.com>');
add address['name' => '"Winter Silence"', 'email' => 'info@site.com']
Possible Solution
fix regexp:
'#^"?(.+)"?\s+<(.*)>\z#'
The text was updated successfully, but these errors were encountered: