Re: Send an email from a form with a taglib?

2003-02-27 Thread Vernon Wu
Even better, to queue up email in a message queue rather than write email data into DB and delete it afterward. You need to have a JMS with this approach though. On the other hand, I'm not sure that it is a good approach that write/read email into DB. Writing data into DB also needs server

RE: Send an email from a form with a taglib?

2003-02-24 Thread Renick, Garrel
Yes, you can use just these two taglibs to send mail with the contents of a form. Simply process the request parameters from the form with JSTL and send the message with mailer. Regards, Garrel Renick -Original Message- From: Hanasaki JiJi [mailto:[EMAIL PROTECTED] Sent: Sunday,

Re: Send an email from a form with a taglib?

2003-02-23 Thread Vic Cekvenich
Good practice is to save the mail info to a db in the web server. Then have another a sync process read all the e-mail and send, without tying up the web server. .V Hanasaki JiJi wrote: Any way to use the mailer / jstl taglibs to send an email with the contents of a form using these taglibs?