Re: Tapestry 4.1 to send email

2007-03-13 Thread Jesse Kuhnert
The ResponseBuilder solution sounds like the current "right" approach to me. The ResponseDelegateFactory service point is where the different response types get registered and can "claim" handling a particular kind of request using the same sort of voting strategy as other servicesSo for your

Re: Tapestry 4.1 to send email

2007-03-09 Thread Stephane Decleire
Has anybody already used this solution ? It's a bit clumsy to me ... I'm not shure where this code should go ... Is it in a kind of generic page which should then be subclassed by pages that need to send mail ? And what should the EmailResponseBuilder look like ? Moreover, i've seen a comment fr

Re: Tapestry 4.1 to send email

2007-03-08 Thread Hugo Palma
Have you looked at http://wiki.apache.org/tapestry/SendingHtmlEmailWithTap ? It describes a way to do that in Tapestry 4.1 Stephane Decleire wrote: Hi, I would like to add a functionnality to our application to send a user his password when he has forgotten it. I would prefer to implement it

Re: Tapestry 4.1 to send email

2007-03-08 Thread Kalle Korhonen
If you are already using Spring, it's dead simple with its JavaMailSender bean. Kalle On 3/8/07, Stephane Decleire <[EMAIL PROTECTED]> wrote: Hi, I would like to add a functionnality to our application to send a user his password when he has forgotten it. I would prefer to implement it using

Tapestry 4.1 to send email

2007-03-08 Thread Stephane Decleire
Hi, I would like to add a functionnality to our application to send a user his password when he has forgotten it. I would prefer to implement it using a Tapestry page to format a good looking mail. So i need to send the Tapestry page by mail instead of rendering it to the user. I've tried to i