Re: help sending emails in GWT

2011-03-01 Thread A. Stevko
That difference is the source of confusion over and over again. Browser hosted obfuscated javascriptvs Server hosted java byte code. On Tue, Mar 1, 2011 at 12:17 PM, Greg Dougherty wrote: > Yep, it's easy to forget the difference. > > On Mar 1, 2:10 pm, Hilco Wijbenga wrote: > > On 1 Marc

Re: help sending emails in GWT

2011-03-01 Thread Greg Dougherty
Yep, it's easy to forget the difference. On Mar 1, 2:10 pm, Hilco Wijbenga wrote: > On 1 March 2011 19:38, Dougherty, Gregory T. > wrote: > > > Wow, so you're saying you think that randomly picked up bits of > > JavaScript should be able to take over your computer and send emails > > from your

Re: help sending emails in GWT

2011-03-01 Thread Hilco Wijbenga
On 1 March 2011 19:38, Dougherty, Gregory T. wrote: > Wow, so you're saying you think that randomly picked up bits of > JavaScript should be able to take over your computer and send emails > from your computer to whomever they want? > > Every spammer in the world must love you. > > Fortunately, th

RE: help sending emails in GWT

2011-03-01 Thread Dougherty, Gregory T.
oups.com Cc: Dougherty, Gregory T. Subject: Re: help sending emails in GWT On 1 March 2011 17:29, Greg Dougherty wrote: > "From" isn't your email account, "From" is "which half of your > application, the client, or the server?" > > You can NOT send email

Re: help sending emails in GWT

2011-03-01 Thread Hilco Wijbenga
On 1 March 2011 02:27, Graham Haroldson wrote: > Again,  im not quite sure what im trying to send emails from,  i can > probably use my email, which is a gmail account.  I tried that and i also > tried adding my account and password to the properties but it still does > nothing Get it working as

Re: help sending emails in GWT

2011-03-01 Thread Hilco Wijbenga
On 1 March 2011 17:29, Greg Dougherty wrote: > "From" isn't your email account, "From" is "which half of your > application, the client, or the server?" > > You can NOT send email from the client, but that so0und't like what > you're trying to do. *OF COURSE* you can send an email from the client

Re: help sending emails in GWT

2011-03-01 Thread Greg Dougherty
Graham, "From" isn't your email account, "From" is "which half of your application, the client, or the server?" You can NOT send email from the client, but that so0und't like what you're trying to do. Greg On Feb 28, 8:27 pm, Graham Haroldson wrote: > Again,  im not quite sure what im trying t

Re: help sending emails in GWT

2011-02-28 Thread A. Stevko
Hi Graham, The browser cannot send emails but the server can. web-toolkit is the client half (and this forum), appengine can be the server half javax.mail is not supported on the client but it supported on the appengine server. If you are using appengine to host the server portion, below is a simp

Re: help sending emails in GWT

2011-02-28 Thread Graham Haroldson
Again, im not quite sure what im trying to send emails from, i can probably use my email, which is a gmail account. I tried that and i also tried adding my account and password to the properties but it still does nothing On Mon, Feb 28, 2011 at 3:04 PM, Greg Dougherty wrote: > > When i GWT Com

Re: help sending emails in GWT

2011-02-28 Thread Graham Haroldson
any idea how i would go about sending an email? Do i have to use a different host or do i have to add my user validation? I don't know the slightest thing about sending emails in code using SMTP, so any direction here would be great. Thanks Graham On Mon, Feb 28, 2011 at 2:55 PM, David Chandler

Re: help sending emails in GWT

2011-02-28 Thread Greg Dougherty
> When i GWT Compile i get no errors at all. GWT Compile is client side. What you're doing is done, and can only be done, on the server. Where are you trying to send the mail from? Greg On Feb 28, 4:28 pm, GrahamH wrote: > Hi all, > > Im trying to set up my GWT app so that it can send emails.

Re: help sending emails in GWT

2011-02-28 Thread David Chandler
If your server impl is getting called, it's not really a GWT question, but I notice you're trying to use smtp.gmail.com as your SMTP host. I highly doubt that's allowed due to spam potential. /dmc On Mon, Feb 28, 2011 at 5:28 PM, GrahamH wrote: > Hi all, > > Im trying to set up my GWT app so th