Skip to content
Advertisement

Java Simple Email Program in Eclipse

I want to make a simple program where you can send email from the Command Line. I found this tutorial, ‘ http://www.tutorialspoint.com/java/java_sending_email.htm ‘, however the downloads don’t. So where can I get JavaMail API and Java Activation Framework (JAF) and how would i put it in my class path.

Basically Im looking for someone to break it down and show me how I could make an email program.

Im using Eclipse luna.

Advertisement

Answer

Do have a look at this example. This example, simply sends one attachment as a mail. The contents of attachment quiz.txt are as follows:

JavaScript

Here is the SendMailExample.java file:

JavaScript

You simply needed this mail.jar file.

To compile, simply write ( mail.jar is present at C:installjavamailmail.jar` location ):

JavaScript

To run, write:

java -classpath .;C:installjavamailmail.jar SendMailExample

THis will do 🙂

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement