| Javamail - Automatic MX Lookup
Hi, To send emails using JavaMail, we need to give the host name. I wanted to check if it is possible to give the DNS name to use when sending emails and then Javamail would internally do a MX lookup . . .
|
JavaMail API Reference Implementation
» General Discussion
|
October 18, 2011 00:06
by: shannon
|
| SMTP Connection Pooling
Hi, I wanted to check if javamail supports SMTP connection pooling? If not then would it be ok to use the same javax.mail.Transport object to send multiple emails? Basically I'm planning on making a . . .
|
JavaMail API Reference Implementation
» General Discussion
|
April 20, 2012 23:55
by: shannon
|
| Bounced Email Query
Hi Bill, I wanted to check if there is a way to differentiate between bounce emails and auto-replies (out of office,etc..) using JavaMail? More specifically is there a way to identify bounced emails? . . .
|
JavaMail API Reference Implementation
» General Discussion
|
April 02, 2011 05:43
by: shannon
|
| Marking messages as read
Thanks for the quick response!! I have a couple more queries: 1. I'm guessing that the POP3Folder supports the getMessageCount() API but does not support the getNewMessageCount() API? 2. Does the PO . . .
|
JavaMail API Reference Implementation
» General Discussion
|
March 20, 2011 05:59
by: ashishdhawan
|
| Marking messages as read
Thanks Bill! I have a few more queries: 1. My understanding of the fetch method is that it retrieves the UID along with the message from the server when getMessages() is called and not when message.g . . .
|
JavaMail API Reference Implementation
» General Discussion
|
March 20, 2011 05:59
by: ashishdhawan
|
| Marking messages as read
1. The message number of the last seen message cannot be used to identify the last seen message as this number can change when messages are deleted from the folder, so one way I can think of retrieving . . .
|
JavaMail API Reference Implementation
» General Discussion
|
March 20, 2011 05:59
by: ashishdhawan
|
| Marking messages as read
Thanks for the quick response! I have a few doubts regarding the first two points: 1. Even if the last message seen is identified, is it possible to retrieve ONLY the messages or message headers of th . . .
|
JavaMail API Reference Implementation
» General Discussion
|
March 20, 2011 05:59
by: ashishdhawan
|
| Marking messages as read
Hi Bill, My requirement is to retrieve only new/unread messages from a POP3 server. Following are the approaches I found in the javadocs for doing this: 1. A simple approach would be to keep track of . . .
|
JavaMail API Reference Implementation
» General Discussion
|
March 20, 2011 05:59
by: ashishdhawan
|