This site is hosted and sponsored by hyve.com specialists in Cloud Hosting UK and VMware Hosting. If you are interested in our services please call us for chat on 0800 612 2524
Send Email In 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="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-2) was last changed on 10-Jan-2012 10:05 by Hyve Support