I can send mails with gmail with javamail

But i cannot set the reply to anyhow...

the code i m using is...

   //the actual mail id someone@gmail.com
   ccAddress = new InternetAddress( "someone+something@gmail.com");

        msg.setFrom(ccAddress);

        Address[] addresses = new Address[1];
        //actually i want to addressee to reply-to
        addresses[0] = new InternetAddress( "someone@yahoo.com" );
        msg.setReplyTo(addresses);

        msg.setSubject(subject);
        msg.setText(text);
        msg.setHeader("MIME-Version" , "1.0" );
        msg.setHeader("Content-Type" , "text/html" );
        msg.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");

Actual gmail id is someone@gmail.com but i read something here

was a problem with re-deploying a ejb... not a prob any more...

please delete this question...

Thanks

link|improve this question

58% accept rate
Are you using Transport.send() or Transport.sendMessage()? – RD1 Oct 16 '10 at 18:01
transport.sendMessage(msg, msg.getAllRecipients()); – Pradyut Bhattacharya Oct 16 '10 at 18:11
feedback

1 Answer

Before you call transport.sendMessage(), try calling msg.saveChanges()
The send() function calls this before calling sendMessage(), but if you are using sendMessage() yourself, you will have to call this to make sure any headers are saved.

link|improve this answer
+1 its already there... – Pradyut Bhattacharya Oct 16 '10 at 18:16
You're already calling saveChanges() ? Interesting. Is the X-Mailer header getting saved? – RD1 Oct 16 '10 at 18:17
ya X-mailer is saved and shown on the headers when i check the sent mail in gmail... – Pradyut Bhattacharya Oct 16 '10 at 18:23
is your 'from' address the same address you are logging into gmail with? – RD1 Oct 16 '10 at 18:39
so sorry for troubling you out here... was a problem with re-deploying a ejb...a big thanks for your time... – Pradyut Bhattacharya Oct 16 '10 at 18:50
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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