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
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
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
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
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