Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using the code below i can send an email written in non-english and although the subject appears correctly the body appears as gibberish.
Any ideas?
Thank you

public void postMail(String recipient, String subject, String message, String from) throws MessagingException, UnsupportedEncodingException {

            //Set the host smtp address
            Properties props = new Properties();
            props.put("mail.smtp.host", "mail.infodim.gr");

            // create some properties and get the default Session
            Session session = Session.getDefaultInstance(props, null);

            // create a message
            Message msg = new MimeMessage(session);

            // set the from and to address
            InternetAddress addressFrom = new InternetAddress(from);
            msg.setFrom(addressFrom);

            InternetAddress addressTo=new InternetAddress(recipient);
            msg.setRecipient(Message.RecipientType.TO, addressTo);

            // Setting the Subject and Content Type
            msg.setSubject(subject);

            msg.setContent(message, "text/plain");
            Transport.send(msg);

        }
share|improve this question

2 Answers

Try:

msg.setContent(message, "text/plain; charset=UTF-8");

Edit Changed to text/plain.

share|improve this answer
Nop..That won't do it – Argiropoulos Stavros Mar 30 '10 at 10:44
should be "text/plain; charset=\"UTF-8\"" – wds Mar 30 '10 at 11:16
This is a very good guess and probably close to the correct solution. We can only guess which character set your email is in. If you don't know, either, perhaps you can add a few lines of hex dump of a sample to the question. – tripleee Oct 14 '11 at 14:54
@wds: Edited to say text/plain. The quotes around the charset identifier are completely optional so I didn't change that. – tripleee Oct 14 '11 at 14:56

Instead of

msg.setContent(message, "text/plain");

I would write

Multipart mp = new MimeMultipart();
MimeBodyPart mbp = new MimeBodyPart();
mbp.setContent(message, "text/plain; charset=ISO-8859-7");
mp.addBodyPart(mbp);

msg.setContent(mp);

I guessed ISO-8859-7 from your name because this charset is for Greek, but maybe you can choose it more properly. Or maybe also UTF-8 works for your case.

share|improve this answer
Why do you need a multipart to wrap a single body part? That's just silly. – tripleee Oct 14 '11 at 14:53
1  
maybe because I took the snippet from an application that sends also attachments?.. I'm a newbie with Java mail. – bluish Oct 14 '11 at 15:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.