tags:

views:

16

answers:

1

I'm trying to write a lightweight emailer for a website in GWT (server side code in php, communication between client and server via JSON). Is there already a widget that does this? I know there are tons of GWT widgets out there, but I haven't been able to find this particular one.

+1  A: 

I doubt such a common widget exists, just because it relies so heavily on knowing the interface with the server, and that interface is different for everybody.

It's a pretty easy thing to write yourself, though. It's as easy as adding a few textboxes and a textarea, a button to send the request to the server using a RequestBuilder with the correct POST parameters and display a message on success/failure.

If you have any more specific questions, feel free to ask, but that'd be the general idea of it.

Jason Hall