[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread minor-undroid
Hi there, I reproduced same problem. I cannot send attachment file and inline image with HTML mail. (Of course, I could send plain text mail without attachment and HTML mail without inline image) I don't have any idea. It would be very helpful to tell me anything. I build the mime message in

[appengine-java] Re: Can't send mail with attachment using JavaMail API

2009-12-31 Thread minor-undroid
? On Dec 31, 11:23 pm, minor-undroid mnrn...@gmail.com wrote: Hi there, I reproduced same problem. I cannotsendattachmentfile and inline image with HTMLmail. (Of course, I couldsendplain textmailwithoutattachmentand  HTMLmailwithout inline image) I don't have any idea.  It would be very helpful

[appengine-java] Re: Can I make GAE send an e-mail with Resent-To header ?

2009-12-22 Thread minor-undroid
transport = session.getTransport(); transport.connect(); InternetAddress resentToList[] = InternetAddress.parse(resentTo, false); transport.sendMessage(message, resentToList);// send to Resent-To address transport.close(); Thanks, On Dec 19, 2:11 am, minor

[appengine-java] Can I make GAE send an e-mail with Resent-To header ?

2009-12-18 Thread minor-undroid
I'd like to make an e-mail forward by GAE with Resent-To/Resent-From header. I tried the client Java program with JavaMail that I made, and got the suitable result. I applied ... mail.host: smtp.gmail.com mail.smtp.auth: true mail.smtp.socketFactory.port: 465