Skip to content
New issue

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

FIX Handle array style email config #395

Closed

Conversation

emteknetnz
Copy link
Collaborator

if (count($email) === 0) {
throw new InvalidArgumentException('Empty array passed for $email');
}
return array_keys($email)[0];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will essentially just throw away the "name" part of the email address, which is not the expected behaviour.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Having a look through https://github.com/silverstripe/silverstripe-framework/blob/5/src/Control/Email/Email.php - looks like we may have accidentally lost support for the "Name" portion of array config during the upgrade to symfony/mailer e.g. https://github.com/silverstripe/silverstripe-framework/blob/5/src/Control/Email/Email.php#L206 will also remove the "Name" portion

Given that we should probably add support back in to Email rather than fixing this here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants