I am new to this JSP taglib thing. Could someone please tell me why this does not work? Thank you.


-D

<%@ taglib uri="http://jakarta.apache.org/taglibs/mailer-1.1"; prefix="mt" %>

<html>
<head>
</head>
<body>
<%String body = request.getParameter("body");
String to = request.getParameter("to");
String from = request.getParameter("from");
String subject = request.getParameter("subject");
%>

<mt:mail  to="<%= to %>"
from="<%= from %>"  subject="<%= subject %>" >
    <mt:message>"<%= body %>" </mt:message>
    <mt:send/>
</mt:mail>

</body>
</html>

Reply via email to