Unlock this challenge:
What happens when you set an email address in the string format Full Name <user@example.com> in Symfony Mailer?
Full Name <user@example.com>
Symfony treats it as an invalid email format and throws an error.
The email is sent, but the recipient does not see the full name.
Symfony only uses the email and ignores the full name.
Symfony automatically parses/converts it into an Address object with both name and email set.
Address