Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.2
-
None
Description
With commons email, it always sets the "name" of the email address to the email address when it is not passed in or is blank. This results in address fields looking like this (using From as an example):
From: "example@example.com" <example@example.com>
When I would expect them to look like this:
From: example@example.com
It seems that there is no real reason to do this. At the very least, it would be nice to have the option to not have this set.
The affected file is org/apache/commons/mail/Email.java in function createInternetAddress. I will attach one possible solution.