Category: General JSP

Paste the code below into a jsp, place ‘mail.jar’ and ‘activation.jar’ below into the lib folder of a war. Upload the war and run the jsp. the war is also included below for clarity.

<%@ page import="javax.mail.*,javax.mail.internet.*,javax.mail.internet.MimeMessage.RecipientType,java.io.*,java.util.Properties" %>

<%

Properties props = new Properties();
props.put("mail.smtp.host", "localhost");
Session mailsession = Session.getDefaultInstance(props, null);
Message msg = new MimeMessage(mailsession);
//set the from and to address
InternetAddress addressFrom;

try {
	addressFrom = new InternetAddress("[email protected]");
	msg.setFrom(addressFrom);
	InternetAddress addressTo = new InternetAddress("[email protected]");
	msg.setRecipient(RecipientType.TO,addressTo);
	msg.setSubject("subject");
	msg.setContent("HELLO", "text/html");
	Transport.send(msg);
} catch (Exception e) {
	e.printStackTrace();
}

%>

 

Tags:

JSP

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.