I'm using Jakarta mail for sending email. The content of the mails are using html/text format. I do this as follow
MimeMessage mimeMessage = new MimeMessage(smtpHost.getSession());
mimeMessage.setContent(text, ""text/html"");
But German Umlaut characters are not rendered correctly. These characters are converted into a question mark.
Freundliche Gr�sse
How can I have German umlaut characters rendered correctly when the content of an email is in format text/html ?