Checking out a java project, I am alerted mail.jar could not be found.
I think this has something to do with the javax.mail library but I am not very familiar with java.
Is this an standard java library? If so, where do I find it? and how do I link it into my netbeans project?
The JavaMail API is packaged within
javax.mailas you mentioned.In response to your questions:
It is optional with Java SE and is included with Java EE. This is from Oracle’s documentation on JavaMail API.
You can download the JavaMail API JAR from Oracle: JavaMail API
I downloaded JavaMail 1.4.5. It comes down as a ZIP file, and there is a
mail.jarfile contained within thejavamail1_4_5.zipfile.The
mail.jarcontains the JavaMail API and implementation.Since I don’t have any specific information or details on your Java project, I couldn’t give you any more information on which exact version of JavaMail API to download and how to integrate it into your NetBeans project. However, you should be able to get almost any modern version of the JavaMail API from the link I provided above.