I know we have talked about this before...

Can you please remind me where abouts we place the java classes in
tomcat 4.

I tried this morning to remove the package I had placed in tomcat by the
app continued to work!!! So I must have the wrong idea about where these
are placed...

panos

-----Original Message-----
From: Vibha Jindal [mailto:[EMAIL PROTECTED]] 
Sent: 22 February 2002 05:56
To: [EMAIL PROTECTED]
Subject: Bulk Email


Hi,

Could someone please guide me as to the optimum way of sending bulk
emails?

Should I use 'mailto' tag,

mailto:a=href"mailto:[EMAIL PROTECTED]?[EMAIL PROTECTED]&[EMAIL PROTECTED],abc2@abc
.com
&Subject=jdflkjdf&Body=lksdflkjsd">

There could be more than 3000 email address in the BCC

Or should we use javax.mail API

Set up an array of Address objects and then send them in one call using
sendMessage. For example:

Transport transport = session.getTransport(addressObjects[0]);
transport.connect(); transport.sendMessage(message,addressObjects);

The mail server will then take the one copy of the message and send it
to multiple addresses. It doesn't need to receive thousands of copies of
the same message.

I need to know which startegy is better as regards the Performance and
feasibility.

Regards,
Vibha

========================================================================
===
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set
JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found
at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

==========================================================================To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to