home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / public / htdocs / gsp / sendmail.jsp < prev    next >
Encoding:
Text File  |  1999-02-14  |  512 b   |  33 lines

  1. <HTML>
  2. <HEAD>
  3.     <TITLE>JSP mail page</TITLE>
  4.     <%@ method="doPost" %>
  5.     <%@ import="java.io.IOException" %>
  6. </HEAD>
  7.  
  8. <BODY>
  9. <H1>JSP mail page</H1>
  10.  
  11. <BEAN name="mailer" type="org.gjt.vinny.beans.MailBean"></BEAN>
  12.  
  13. <%
  14.     mailer.setServer("202.120.182.10");    // set your mail server here
  15.     try {
  16.         mailer.send();
  17. %>
  18.  
  19. Your email message was sent succesfully.
  20.  
  21. <%
  22.     } catch(IOException exc) {
  23. %>
  24.  
  25. <I>An error occured while sending your email message: <%= exc %></I>
  26.  
  27. <%
  28.     }
  29. %>
  30.  
  31. </BODY>
  32. </HTML>
  33.