Looking For program to send email

C

clusardi2k

Does anyone know how to send email.

Example projects on the Internet don't work for me because the IDE tells me packages do not exist.

For example,

import javax.mail.*; //Package does not exist
import javax.mail.internet.*; //Package does not exist

Thank you,
 
A

Arne Vajhøj

Does anyone know how to send email.

Example projects on the Internet don't work for me because the IDE tells me packages do not exist.

For example,

import javax.mail.*; //Package does not exist
import javax.mail.internet.*; //Package does not exist

For some reason email in Java is part of Java EE not part
of Java SE.

If you are developing for a Java EE environment just add some
Java EE jar file to your IDE's classpath and you are good.

The classes will be there at runtime.

If you are developing for a Java SE environment you need to
get the JavaMail (and its dependency JAF) and put it in classpath
for both IDE and runtime.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,997
Messages
2,570,239
Members
46,827
Latest member
DMUK_Beginner

Latest Threads

Top