tags:

views:

39

answers:

2

hello fellow java developers,

Having a little issue with creating a java application on a macintosh computer (snow leopard).

I've set up my application in eclipse, added all of the appropriate jar files, but for some reason the code is not recognizing some of my variables as valid types.

I've imported the libraries via

import javax.mail.*;
import javax.mail.internet.*;

These libraries are not recognized by the application. BUT I've put them on the build path! Any advice on how to fix this?

+2  A: 

Its an extra package for Java SE. Download from here

renick
This is already on the classpath - but thanks
Wooooo
A: 

Java Mail Api you have to download from here and then add that jar to your eclipse project by following these instruction. If it wont work please post some more details how you added jar to your project.

GG