Send Email In 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="sun.net.smtp.SmtpClient, java.io.*" %>
<%
String from="xxx@hyve.com";
String to="xxx@hyve.com, xxx@hyve.com";
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);
}
%>
Back to JSP
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-1) was last changed on 22-Sep-2008 10:39 by UnknownAuthor