0
votes
1answer
27 views
Java Mail: SSLHandshakeException when sending email on port 25 without SSL
Although I'm trying to send an email on port 25 without SSL, I'm getting an SSLHandshakeException. Below you can see debug messages printed by javax.mail.Session and the SSLHandshakeException.
Can …
0
votes
3answers
44 views
How to configure environment to use JavaMail?
I need to send simple html-message with JavaMail. And when I tried to find some nice examples with explanations in the Internet, each next example made me more angry and angry.
All those silly …
0
votes
3answers
55 views
out of memory using java mail
does java mail API uses streaming? where can i get the source code to confirm this.
also i am tryign to send the mail using raw and non-raw mode.
in raw mode i can pass an input Stream to MimeMessage …
0
votes
1answer
27 views
Search email inbox using javax.mail
I was trying to see if there was a way to search an email inbox from javax.mail. Say I wanted to send a query and have the it return emails to us. Can we parse returned HTML and extract data. Also, if …
0
votes
1answer
58 views
Javamail problem: cannot send mails through SMTP after checking mails with POP3
So, my problem is the following: I have a mail client that I wrote in Java and I cannot send mails through SMTP after I check my mails with POP3.
The exception I caught says that the transport …
1
vote
2answers
100 views
How to store mail password on server side?
I need to send e-mails from my application that is deployed on Weblogic 10.0. I try to put mail session properties on server side. Properties like mail.host or mail.debug work OK. But how do I …
0
votes
1answer
55 views
Jetty JNDI Java Mail
Hi all,
I am using Jetty 7 with JBoss Seam and have 2 Java Mail Sessions configured, one for support notifications and another for general notifications.
The problem I am having appears to be from …
0
votes
2answers
126 views
javamail vs sendmail performance during bulk email
Hi all,
I'm writing a Java mass emailer application to send out emails to send between 50,000 to 100,000 a day to users.
The current plan is to delegate the sending to delegate to sendmail (on the …
0
votes
2answers
57 views
How to set the Return-Path to an email address other than Sender address using JavaMail?
How to set the Return-Path to an email address other than Sender address using JavaMail?
3
votes
7answers
126 views
How should a Java program handle an external mail server being down?
I have a constantly-running Java program that needs to send an email whenever it encounters a problem. However it is possible that the mail server it uses could be down at the time it tries to send …
3
votes
2answers
79 views
How to attach a file to an email using JavaMail
I need to send a PDF file using JavaMail. The PDF is currently a byte[]. How do I get it into the DataSource?
byte[] pdffile = ....
messageBodyPart = new MimeBodyPart();
DataSource source = ???
…
0
votes
2answers
71 views
Download attachments using Java Mail
Now that I`ve downloaded all the messages, and store them to
Message[] temp;
How do I get the list of attachments for each of those messages to
List<File> attachments;
Note: no thirdparty …
0
votes
2answers
28 views
Message charset
How do I get the charset from javax.mail.Message object?
0
votes
1answer
78 views
How to check status of an SMTP server from Java?
In a Java program, what is the best way of determining if an SMTP server is ready to accept and send an email?
1
vote
2answers
146 views
JavaMail Exchange Authentication
Hello, I'm trying to use Exchange authentication from my app using JavaMail to do this. Could some one give me a guide to do this?
After authentication I need to send mails that's the main reason that …
