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
Sending the password forgotten form leads to the following exception:
Email "From name" does not comply with addr-spec of RFC 2822.
What is the behavior you expect?
Using password forget feature with following sulu_community.yaml
sulu_community: webspaces: my-webspace: from: email: '[email protected]' name: 'From name'
The structure of CommunityManagerCompilerPass and MailFactory differ, e.g. for from email:
SuluCommunityBundle/DependencyInjection/CompilerPass/CommunityManagerCompilerPass.php
Line 126 in 17e2867
The config structure results to following array:
['[email protected]' => 'From name']
but
SuluCommunityBundle/Mail/MailFactory.php
Line 121 in 17e2867
Fixing MailFactory::getAddress() in order to work with current configuration structure.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Actual Behavior
Sending the password forgotten form leads to the following exception:
Email "From name" does not comply with addr-spec of RFC 2822.
Expected Behavior
What is the behavior you expect?
Steps to Reproduce
Using password forget feature with following sulu_community.yaml
The structure of CommunityManagerCompilerPass and MailFactory differ, e.g. for from email:
SuluCommunityBundle/DependencyInjection/CompilerPass/CommunityManagerCompilerPass.php
Line 126 in 17e2867
The config structure results to following array:
but
SuluCommunityBundle/Mail/MailFactory.php
Line 121 in 17e2867
Possible Solutions
Fixing MailFactory::getAddress() in order to work with current configuration structure.
The text was updated successfully, but these errors were encountered: