Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I compile a simple code that has the following 2 import statements:

import javax.mail.*

import javax.mail.internet.*

I get the following message:

package javax.mail does not exist

package javax.mail.internet does not exist

Why did I get this error ? I searched on internet but could not find something meaningful , though i got some idea.

What should I do to overcome this error ?

In case the following is my complete code:

import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;

class tester {
 public static void main(String args[]) {
   Properties props = new Properties();
   props.put("mail.smtp.com" , "smtp.gmail.com");
   Session session  = Session.getDefaultInstance( props , null);
   String to = "me@gmail.com";
   String from = "from@gmail.com";
   String subject = "Testing...";
   Message msg = new MimeMessage(session);
    try {
      msg.setFrom(new InternetAddress(from));
      msg.setRecipient(Message.RecipientType.TO , new InternetAddress(to));
      msg.setSubject(subject);
      msg.setText("Working fine..!");
    }  catch(Exception exc) {
       }
 }
}
share|improve this question

5 Answers

up vote 11 down vote accepted

You need to download the JavaMail API, and put the relevant jar files in your classpath.

share|improve this answer
It does not come along with JDK ? – saplingPro Jul 7 '11 at 6:17
1  
@grassPro: I don't believe so - and it certainly doesn't look like it, given the errors you're getting... – Jon Skeet Jul 7 '11 at 6:25
1  
@grassPro: They do not come with JDK. – Logan Jul 7 '11 at 8:51
@JonSkeet I downloaded javax.mail.jar, but I didn't understand where I put this jar? Help me in that. – devsda Apr 16 at 10:37
@devsda: How am I meant to know anything about what you're doing with that little description? Are you writing a webapp, a console app, etc? Basically you should work out how the classpath is configured for whatever app you're building, and go from there. This is a fundamental part of building apps in Java, and not specific to JavaMail. – Jon Skeet Apr 16 at 10:38
show 5 more comments

It might be that you do not have the necessary .jar files that give you access to the Java Mail API. These can be downloaded from here.

share|improve this answer

you need mail.jar and activation.jar to build javamail application

share|improve this answer
I haven't found activation.jar in the javamail api.But my program is error free now ! ?? – saplingPro Jul 7 '11 at 9:16
@grassPro, and future referrers: "Note: Unless you're using Java SE 6 or newer, you will also need the JavaBeans Activation Framework (JAF) extension that provides the javax.activation package." This note is from Oracle's site – Viru Aug 9 '12 at 8:06

Download "javamail1_4_5.zip" file from http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-eeplat-419426.html#javamail-1.4.5-oth-JPR

Extract zip file and put the relevant jar file ("mail.jar") in the classpath

share|improve this answer

you need mail.jar file .it can be downloaded from download link and add to u r javamail project by following steps

1.Extract the mail.jar file

2.Right click the project node (JavaMail), click Properties to change properties of the project

3.Now go to Libraries Tab

4.Click on Add JAR/Folder Button. A window opens up.

5.Browse to the location where you have unzipped your Mail.jar

6.press ok

7.Compile your program to check whether you have been able to successfully include these jar files or not

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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