Re: sending a JSP page by email

2005-03-11 Thread Gabriel Belingueres
enough to get you runnning. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 16, 2004 1:52 PM > To: tomcat-user@jakarta.apache.org > Subject: RE: sending a JSP page by email > > I *believe*, but don't hold m

RE: sending a JSP page by email

2004-12-16 Thread Graff, David
, 2004 2:22 PM To: 'Tomcat Users List' Subject: RE: sending a JSP page by email Hey kids, I had run into this a while back. I've got a link here to what I did. It's rough and ready so don't expect too much out of it, but it should be enough to get you runnning. -O

RE: sending a JSP page by email

2004-12-16 Thread Graff, David
cember 16, 2004 1:52 PM To: [EMAIL PROTECTED] Subject: RE: sending a JSP page by email I *believe*, but don't hold me to it, that you can implement a filter AFTER the JSP renders, in the latest servlet spec. With that, you shouldn't have much trouble taking the output stream and sen

RE: sending a JSP page by email

2004-12-16 Thread Frank W. Zammetti (MLists)
gt; Haim > > -----Original Message- > From: Gabriel Belingueres [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 15, 2004 12:15 AM > To: [EMAIL PROTECTED] > Subject: sending a JSP page by email > > Hi, > > How can I take advantage of Tomcat's JSP processing en

RE: sending a JSP page by email

2004-12-16 Thread fzlists
think? > Haim > > -----Original Message- > From: Gabriel Belingueres [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 15, 2004 12:15 AM > To: [EMAIL PROTECTED] > Subject: sending a JSP page by email > > Hi, > > How can I take advantage of Tomcat's JSP

RE: sending a JSP page by email

2004-12-16 Thread haimra
nt: Wednesday, December 15, 2004 12:15 AM To: [EMAIL PROTECTED] Subject: sending a JSP page by email Hi, How can I take advantage of Tomcat's JSP processing engine to use a JSP page as a template for an email? That is, I want to do something like a page forwarding from a servlet, but this forwa

Re: sending a JSP page by email

2004-12-14 Thread Asim Alp
Here is what I use: // here is a function from my MailUtils class public boolean formSend(String to, String fromAddress, String fromPersonal, String msgSubject, PageContext pc, String templateURL) { if (templateURL == null || templateURL.equals("")

sending a JSP page by email

2004-12-14 Thread Gabriel Belingueres
Hi, How can I take advantage of Tomcat's JSP processing engine to use a JSP page as a template for an email? That is, I want to do something like a page forwarding from a servlet, but this forwarding process the JSP page and, instead of send it to the browser, it send it by email to somebody. Th