Programming Tutorials

Comment on Tutorial - Sending Email using JSP By Vijay



Comment Added by : manikanta

Comment Added at : 2015-02-02 05:39:09

Comment on Tutorial : Sending Email using JSP By Vijay
org.apache.jasper.JasperException: An exception occurred processing JSP page /samplemail.jsp at line 42

39: // Hand the message to the default transport service
40: // for delivery.
41:
42: Transport.send(msg);
43: out.println("Mail was sent to " + to);
44: out.println(" from " + from);
45: out.println(" using host " + host + ".");


View Tutorial