Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.3.3
-
None
Description
I am currently implementing a SMTP client for a platform that requires the network io operations to be asynchronous (vert.x), however the Email class and the subclasses work very well for creating the messages and storing the data like from and to addresses.
I would like to use the bounceAddress field in the client, but that is currently not possible since it has a setter but not a getter.
I have currently worked around this by subclassing SimpleEmail and adding the getter (this would be required for all Email classes), but it would be better to have this in the normal classes if possible.