Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thanks for your kid reply. It would be great if you can send me code snippet of using appengine to send mail. King regards Naveen On Oct 5, 12:49 am, nacho vela.igna...@gmail.com wrote: You can use appengine to deploy your app and use the appengine mail api. On 4 oct, 09:41, Jeff Chimene

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thank you for your kind reply. I will look in to it. On Oct 4, 5:41 pm, Jeff Chimene jchim...@gmail.com wrote: Since you want the recipient address hidden, you cannot use GWT[1]. You'll have to send a request to the server and have it compose and send the email. [1] Otherwise, you'd use a

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thank you for your kind reply. I will look in to it. On Oct 4, 12:03 pm, abhiram wuntakal abhir...@gmail.com wrote: The simplest way to do this would be, Create a front end page with the neccesary stuff like Recipient's id, Subject Title, Mail Body and send all this data to the server side

Re: Send e-mail in GWT

2010-10-06 Thread naveen
Thank you for your kind reply. I will look in to it. On Oct 4, 11:44 am, Subhrajyoti Moitra subhrajyo...@gmail.com wrote: i think GWT will be an overkill for this work. I would just use a  HTML form and submit to a PHP/Perl/Ruby script for sending the mail out from the server. However if u

Re: Send e-mail in GWT

2010-10-04 Thread Subhrajyoti Moitra
i think GWT will be an overkill for this work. I would just use a HTML form and submit to a PHP/Perl/Ruby script for sending the mail out from the server. However if u insist.. Use GWT to make the form and submit buttons.. To send the mail u have 2 options: - Use GWT RPC, which means u require

Re: Send e-mail in GWT

2010-10-04 Thread Jeff Chimene
Since you want the recipient address hidden, you cannot use GWT[1]. You'll have to send a request to the server and have it compose and send the email. [1] Otherwise, you'd use a *mailto* url On Mon, Oct 4, 2010 at 2:37 AM, naveen naveenkumarnl1...@gmail.com wrote: Hi team, My requirement is

Re: Send e-mail in GWT

2010-10-04 Thread abhiram wuntakal
The simplest way to do this would be, Create a front end page with the neccesary stuff like Recipient's id, Subject Title, Mail Body and send all this data to the server side alone with the sender username and password also as this is needed for the authentication. Then, make use of *mail.jar

Send e-mail in GWT

2010-10-04 Thread naveen
Hi team, My requirement is to send a mail from my website. i will elaborate the requirement. I have my own website, which is in simple html now. Am planning to develop my website using gwt. There is a contact us page in the website where a user can mail an enquiry to us. the form is like below.

Re: Send e-mail in GWT

2010-10-04 Thread nacho
You can use appengine to deploy your app and use the appengine mail api. On 4 oct, 09:41, Jeff Chimene jchim...@gmail.com wrote: Since you want the recipient address hidden, you cannot use GWT[1]. You'll have to send a request to the server and have it compose and send the email. [1]