Category: General JSP

Paste the code below into a jsp, place ‘mail.jar’ and ‘activation.jar’ into the lib folder of a war.

<%@ page import="sun.net.smtp.SmtpClient, java.io.*" %>
<% String from="[email protected]"; String to="[email protected], [email protected]"; try{ SmtpClient client = new SmtpClient("localhost"); client.from(from); client.to(to); PrintStream message = client.startMessage(); message.println("To: " + to); message.println("Subject: Sending email from JSP"); message.println("This was sent from a JSP page"); message.println(); message.println("It worked"); message.println(); message.println(); client.closeServer(); } catch (IOException e){ System.out.println("ERROR SENDING EMAIL:"+e); } %>

 

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.