I am using Jakarta's mailer tags in my JSP page to send email through a
form, but it won't send. This is what I have so far:

<%@ taglib uri="/WEB-INF/mailer.tld" prefix="mt" %>
<mt:mail server="1.2.3" from="[EMAIL PROTECTED]" subject="Test">
  <mt:setrecipient type="to">
    <%=request.getParameter("TO")%>
  </mt:setrecipient>
  <mt:from>
    <%=request.getParameter("FROM") %>
  </mt:from>
  <mt:subject>
    <%=request.getParameter("SUBJECT") %>
  </mt:subject>
  <mt:message type="text">
  This is a test. 
  </mt:message>
  <mt:send/>
</mt:mail>

What am I doing wrong. 




Christine Nguyen
HQ AFMSA/SGSID
2510 Kennedy Cir Ste 214
Brooks AFB TX 78235-5115
DSN 240-4030  Comm (210) 536-4030
Fax (210) 536-2625
[EMAIL PROTECTED]



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to