catlett 01/08/14 10:55:04
Modified: mailer/xml mailer.xml
Log:
all of the documentation is showing u now
Revision Changes Path
1.2 +28 -25 jakarta-taglibs/mailer/xml/mailer.xml
Index: mailer.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/mailer/xml/mailer.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mailer.xml 2001/08/13 23:53:53 1.1
+++ mailer.xml 2001/08/14 17:55:04 1.2
@@ -60,32 +60,32 @@
to wait for the SMTP host if it is busy.
</P>
<PRE>
-<!-- Create a message by entering the name of the SMTP host. -->
-<!-- The default for this attribute is localhost; for a host other -->
-<!-- than localhost supply it's name with the <B>server</B> attribute -->
-<!-- as in the example below. The body of the e-mail is supplied in the -->
-<!-- message tag. The send tag is necessary to send the message. -->
-<mt:mail server="home.net" to="[EMAIL PROTECTED]"
-from="[EMAIL PROTECTED]" subject="mail taglib">
- <mt:message>[<I>body of message</I>]</mt:message>
- <mt:send/>
-</mt:mail>
+<!-- Create a message by entering the name of the SMTP host. -->
+<!-- The default for this attribute is localhost; for a host other -->
+<!-- than localhost supply it's name with the <B>server</B> attribute -->
+<!-- as in the example below. The body of the e-mail is supplied in the -->
+<!-- message tag. The send tag is necessary to send the message. -->
+<mt:mail server="home.net" to="[EMAIL PROTECTED]"
+from="[EMAIL PROTECTED]" subject="mail taglib">
+ <mt:message>[<I>body of message</I>]</mt:message>
+ <mt:send/>
+</mt:mail>
<br/>
-<!-- Using a JNDI named JavaMail Session object defined by the -->
-<!-- <B>session</B> attribute. -->
-<mt:mail session="java:/comp/env/session" to="[EMAIL PROTECTED]"
-from="[EMAIL PROTECTED]" subject="mail taglib">
- <mt:message>[<I>body of message</I>]</mt:message>
- <mt:send/>
-</mt:mail>
+<!-- Using a JNDI named JavaMail Session object defined by the -->
+<!-- <B>session</B> attribute. -->
+<mt:mail session="java:/comp/env/session" to="[EMAIL PROTECTED]"
+from="[EMAIL PROTECTED]" subject="mail taglib">
+ <mt:message>[<I>body of message</I>]</mt:message>
+ <mt:send/>
+</mt:mail>
<br/>
-<!-- Or using a JNDI named JavaMail MimePartDataSource object -->
-<!-- defined by <B>mimeMessage</B> attribute. -->
-<mt:mail mimeMessage="java:/comp/env/message" to="[EMAIL PROTECTED]"
-from="[EMAIL PROTECTED]" subject="mail taglib">
- <mt:message>[<I>body of message</I>]</mt:message>
- <mt:send/>
-</mt:mail>
+<!-- Or using a JNDI named JavaMail MimePartDataSource object -->
+<!-- defined by <B>mimeMessage</B> attribute. -->
+<mt:mail mimeMessage="java:/comp/env/message" to="[EMAIL PROTECTED]"
+from="[EMAIL PROTECTED]" subject="mail taglib">
+ <mt:message>[<I>body of message</I>]</mt:message>
+ <mt:send/>
+</mt:mail>
<br/>
</PRE>
<P>How e-mail is delivered depends on the JavaMail SMTP host settings. The
@@ -458,7 +458,10 @@
</description>
<summary>
-
+ Used to set any type of recipient to an e-mail. Two attributes are
+ required, type and setress. Type may be either "to", "cc", or "bcc" and
+ address should be a string representation of the recipients e-mail
+ address.
</summary>
<availability>1.0</availability>
<restrictions>