
| Key: |
EMAIL-1
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
James Mc Millan
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
File Attachments:
|
|
|
Environment:
|
Operating System: other
Platform: Other
Operating System: other
Platform: Other
|
|
Issue Links:
|
Reference
|
|
|
|
This issue is related to:
|
|
|
|
|
|
|
|
| Bugzilla Id: |
38873
|
| Resolution Date: |
23/Feb/07 12:13 AM
|
Hello
More accurately, the charset is not used in buildMimeMessage() as it is not part
of the contentType used when calling message.setContent(). Since
setContentType() updates the charset, I think it makes for setCharset() to
update the contentType?
James
|
|
Description
|
Hello
More accurately, the charset is not used in buildMimeMessage() as it is not part
of the contentType used when calling message.setContent(). Since
setContentType() updates the charset, I think it makes for setCharset() to
update the contentType?
James |
Show » |
|
mail.setCharset(Email.ISO_8859_1); // sets the charset for the subject
mail.setFrom(from);
mail.addTo(user.getEmail());
mail.setSubject(subject);
mail.setContent(mailText, "text/plain; charset=iso-8859-1");