Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.1
-
None
Description
Email.addTo() and setFrom() doesn't use Email.charset.
Code should be as following.
public Email setFrom(String email, String name)
throws EmailException
{
return setFrom(email, name, this.charset);
}
public Email addTo(String email, String name)
throws EmailException
{
return addTo(email, name, this.charset);
}