Tagged Questions

An open source Java framework to build platform-independent mail and messaging applications.

learn more… | top users | synonyms

8
votes
2answers
16k views

Using Javamail to connect to Gmail smtp server ignores specified port and tries to use 25

I'm trying to use javamail in a groovy script to send out an email via gmail. I've looked many places online and have been unable to get it working thus far. The error I'm getting when running my ...
7
votes
1answer
357 views

Storing data in MySql table through Javamail failed

How can I store the messages which I've written through javamail into MySQL table? I've already configured james server config file to connect to MySQL server(with datasource element name maildb), ...
7
votes
7answers
15k views

How to send html email to outlook from Java

I'm trying to send an email in html format using JavaMail but it always seems to only display as a text email in Outlook. Here is my code: try { Properties props = System.getProperties(); ...
6
votes
3answers
3k views

JavaMail not sending Subject or From under jetty:run-war

Has anyone seen JavaMail not sending proper MimeMessages to an SMTP server, depending on how the JVM in started? At the end of the day, I can't send JavaMail SMTP messages with Subject: or From: ...
5
votes
3answers
120 views

java : execute a method over a maximum period of time

I am using the JavaMail API , and there is a method in the Folder class called "search" that sometimes take too long to execute. What i want is to execute this method over a maximum period of time( ...
5
votes
2answers
693 views

Does JavaMail support server-push?

Does JavaMail support notification of new emails through server-push? If yes, where is the documentation for that? If no, is there a library that can do it?
5
votes
2answers
3k views

Javamail NTLM Authentication Failure

Trying to connect to Exchange server using NTLM in JavaMail. I can connect to SMTP, but not IMAP. I can also authenticate via the OS X Mail.app application using the identical ...
5
votes
1answer
448 views

Am I allowed to use the JavaMail API for a commercial project?

The JavaMail API's license agreement is so confusing since I am not a lawyer. I want to use JavaMail for a closed-source, commercial project on the server-side of an email service, which offers email ...
5
votes
3answers
738 views

Using gmail as SMTP server in Java web app is slow

I was wondering if anyone might be able to explain to me why it's taking nearly 30 seconds each time my Java web app sends an email using Gmail's SMTP server? See the following timestamps: ...
5
votes
2answers
4k 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 ...
5
votes
4answers
776 views

Best way to extract a timezone from a mail Date header in Java?

I need to store the timezone an email was sent from. Which is the best way to extract it from the email's 'Date:' header (an RFC822 date)? And what is the recommended format to store it in the ...
4
votes
1answer
80 views

EMail Client Library

I'm looking for a library that wraps the javamail API on the receiving side, in the same manner that Commons Email handles the sending of emails. In my perfect world the library works in the ...
4
votes
1answer
279 views

Deleting mail permanently using java Mail

I have been using java mail to automate Gmail operations. One of the operation is to delete mail and I use following for it - message.setFlag(Flags.Flag.DELETED, true); but doing so only pushes my ...
4
votes
2answers
229 views

Grails Mail is Not working!

i am getting this error ERROR org.springframework.mail.MailSendException: Failed messages:javax.mail.MessagingException: can't determine local email address; message exceptions (1) are: Failed ...
4
votes
3answers
274 views

Android S/MIME developement

I have searched from here to the ends of the earth and have still not figured out how this is possible. I started with using the custom built javamail/gmail api because I wanted to send the email in ...
4
votes
3answers
170 views

How do I mock classes that are difficult to instantiate (javax.mail.Message)?

I want to use junit tests in my next project, but I am unsure which of the several mock packages I should use. I also read through a couple of tutorials but I did not find info how to solve the ...
4
votes
2answers
557 views

javax.mail - problem decoding subject

i'm facing a problem decoding a mail with the following subject: Subject: =?ISO-8859-1?Q?Re: Re: Re: Fwd: (GI ?= =?ISO-8859-1?Q?Support-Id:11729)?= javamail decodes it as: ...
4
votes
3answers
2k views

How to download only new emails from imap?

I have an application that is used to archive emails using imap. Also in this application are many imap accounts that need to be archived. In this moment from time to time the application connects to ...
4
votes
4answers
481 views

Encoding problem from database to javamail

I have a small application which reads from a Oracle 9i database and sends the data via e-mail, using JavaMail. The database has NLS_CHARACTERSET = "WE8MSWIN1252", that's it, CP1252. If I run the app ...
4
votes
4answers
541 views

Recommended Java API for receiving e-mails? (POP3 and IMAP)

For sending, we have brilliant apache commons email. What about receiving? Something neat like this? Or any recommended tutorials/books whatever? Thanx
4
votes
3answers
987 views

Java mail with attachment: ClassCastException on javax.mail.Multipart

I use the following code to download the attachment from the mail but it gives the ClassCastException on the Multipart declaration: Exception in thread "main" java.lang.ClassCastException: ...
4
votes
2answers
1k views

Can I perform a search on mail server in Java?

I am trying to perform a search of my gmail using Java. With JavaMail I can do a message by message search like so: Properties props = System.getProperties(); props.setProperty("mail.store.protocol", ...
4
votes
2answers
1k views

Why is JavaMail Transport.send() a static method?

I'm revising code I did not write that uses JavaMail, and having a little trouble understanding why the JavaMail API is designed the way it is. I have the feeling that if I understood, I could be ...
4
votes
3answers
281 views

Use JavaMail or go with a commercial component?

If reading and parsing email from via Pop is a critical part of my application, would it make sense to go with a commercial email component, or is JavaMail all I need really? My usage: I want to ...
4
votes
4answers
1k views

Alternatives to Java Mail API

I am trying to send an email with attachments and found the java mail api to be irritatingly insufficient. There are only two implementations of javax.activation.DataHandler which mandates me to ...
4
votes
4answers
8k views

java.lang.NoClassDefFoundError: javax/mail/Authenticator, whats wrong?

Send to Email.java package helper; //Mail.java - smtp sending starttls (ssl) authentication enabled //1.Open a new Java class in netbeans (default package of the project) and name it as "Mail.java" ...
4
votes
6answers
2k views

Mail server for JavaMail testing

I want to test JavaMail. So i need a Mailserver.. i tested on localhost. So are there any free Mailservers i can use ?
4
votes
3answers
10k views

Using JavaMail with TLS

I found several other questions on SO regarding the JavaMail API and sending mail through an SMTP server, but none of them discussed using TLS security. I'm trying to use JavaMail to send status ...
3
votes
3answers
41 views

How to send html template as mail using groovy

I am using JavaMail API 1.4.4 to send mails. So far I am able to send the mail, but actually I need to send HTML content so that when the mail is received it processes the html tags. Example: if I ...
3
votes
2answers
50 views

How to change JavaMail port

I'm writing a small Java app using JavaMail that sends the user an automated email. They can choose between (for now) two ports: 25 and 587. The port can be selected via a radio button on the GUI. ...
3
votes
2answers
106 views

How to add inline images and attach files in Java mail

I am using the Java mail API for e-mailing. I have to e-mail a message that contains both inline images specified by HTML's <img> tag and some attached files. What content type I should use for ...
3
votes
2answers
108 views

Configurable mail server mock for JUnit tests?

i'm looking for a mail server mock that can be configured like a Mockito mock object. Currently we are using Greenmail als mail server mock, but i would like to do something like this in my unit ...
3
votes
1answer
283 views

javamail mark gmail message as read

Note: added after answer: Thanks.. Yeah I had tried the Flag.SEEN to true and saveChanges.. I also had read getContent marks it read. I tried using it in the for statement that loops through the ...
3
votes
1answer
200 views

What are some alternatives to javamail [closed]

We are developing a new java project that needs to send out emails. In the past we've used javamail (I think v1.2), but we've had some problems and I was wondering if there are any good alternatives ...
3
votes
2answers
186 views

Google app engine JAVA: how to embed html in mail being sent while using java mail api on google app engine?

this is the working code i'm using to send the mail but if am including html content to the string argument of the setText() method then its being displayed merely as string to the user, no HTML ...
3
votes
1answer
364 views

Sending email through JavaMail… constant problem

Turns out that JavaMail is a bit more frustrating than I thought it would be. I've looked at several examples online on how to send a simple SMTP email through Gmail's servers (but not through SSL). ...
3
votes
1answer
194 views

Loading a Java Charset manually

I'm doing some work using the JavaMail API, and I've run across encodings which Java doesn't support natively (by design), such as UTF7/unicode-1-1-utf-7. For that encoding in particular I found the ...
3
votes
2answers
246 views

does javamail load attachments into memory before sending?

I need to create an email with an attachment that is composed on the fly. In my first draft of this, I built the attachment as a String. But at the code walkthru others pointed out that the string ...
3
votes
1answer
682 views

Send an email from java through proxy

I have used Java Mail API to send emails and receive them. Now the place i am doing this project has a proxy server. May i know how to send an email from java through a proxy server?
3
votes
2answers
1k views

Problem with subject encoding when sending an email

I'm sending an email and I'm receiving it correctly but the encoding of the subject is not correct. I'm sending "invitación" but I'm receiving "invitaci?n". The content of the message is OK. The ...
3
votes
1answer
276 views

Problem sending mail with Apache Commons email

I'm trying to send a simple text email using commons email Email email = new SimpleEmail(); email.setHostName("smtp.gmail.com"); email.setSmtpPort(587); email.setAuthenticator(new ...
3
votes
1answer
395 views

Is it acceptable to leave the javamail session Transport open?

My application needs to send emails on an ad hoc basis. I'm using javamail's getDefaultSession and getTransport to send the message, and it's all working as expected. However I've noticed that the ...
3
votes
2answers
537 views

Using javax.mail to send to multiple recipients

I've got the following... msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to)); Which works fine but when I attempt to add this multiple times (with different variables for to) it ...
3
votes
1answer
698 views

Spring's JavaMailSenderImpl throws an exception but still sends the email

Using Spring 3.0, I wrote an interface to hide from the application which template engine I was using for sending mail. The interface is public interface MailSender { public void send(String[] ...
3
votes
3answers
201 views

What are the ways not to wait for execution of a code block or a method?

What are the correct ways/practice/implementation/strategies (or whatever we call it as) for not to wait for code block/method to finish execution in Java? Assume the following method: private void ...
3
votes
1answer
755 views

JavaMail stops sending mails after a while

I am currently doing a summer job as Java programmer. We have an application where people can enter their tasks, agenda, etc. The program is a client-server program, so all data is stored on a server. ...
3
votes
3answers
2k views

How to attach multiple files in java?

The following code is used to attach the files in java. I want to sent multiple files attachments through Email. Any suggestion should be appreciated. public class SendMail { public SendMail() ...
3
votes
1answer
244 views

How to build an email alert system

We are building an email alert system which needs to send customized emails in real time based on certain criteria (think Google alerts). The application sends emails to multiple users from a web ...
3
votes
1answer
219 views

Maven problem with invalid jar file which is actually html

i'm running into a problem in my maven build recently, that it downloads a jar file for the javamail-1.4.jar or something, but it turns out the file is not a real jar file, it's actually a html with a ...
3
votes
1answer
308 views

How can I send two emails via javamail such that outlook will put them in the same conversation?

At some point, I've sent an email and it is processed and received by an exchange server and then viewed by an outlook client. At a later point, I send another email where it is a reply/related to the ...

1 2 3 4 5 13