Is it possible to send an email from my Java application using a Gmail account? I have it configured to send using my company mail server, but that's not going to cut it when I distribute the application. Answers using Hotmail or Yahoo mail are also acceptable.
|
feedback
|
|
Something like this (sounds like you just need to change your SMTP server):
| |||||||
feedback
|
|
Thanks to @jodonnel and everyone else who answered. I'm giving him a bounty because his answer led me about 95% of the way to a complete answer. Here's the final code that I got to work (with comments where I needed to make changes). You'd only have to change the
| |||||||||
feedback
|
|
Other people have good answers above, but I wanted to add a note on my experience here. I've found that when using Gmail as an outbound SMTP server for my webapp, Gmail only lets me send ~10 or so messages before responding with an anti-spam response that I have to manually step through to re-enable SMTP access. The emails I was sending were not spam, but were website "welcome" emails when users registered with my system. So, YMMV, and I wouldn't rely on Gmail for a production webapp. If you're sending email on a user's behalf, like an installed desktop app (where the user enters their own Gmail credentials), you may be okay. Also, if you're using Spring, here's a working config to use Gmail for outbound SMTP:
| |||||
feedback
|
|
Even though this question is closed, I'd like to post a counter solution, but now using Vesijama (Open Source JavaMail smtp wrapper):
| |||||
feedback
|
|
Here is a complete working Java class for sending email through your Gmail account suitable for use in web applications | |||
|
feedback
|
|
You can connect to Gmail via SMTP, and its pretty easy to send mail via an smtp connection in java. I would go that route. | |||
|
feedback
|
|
This is what I do when i want to send email with attachment, work fine. :)
| |||
|
feedback
|
| ||||
|
feedback
|
|
This configuration is for Spring and GMAIL TLS. Please remember to test this from a system that is not behind a firewall if you want to skip the connection refused exeception. true true | |||
|
feedback
|
|
An easy route would be to have the gmail account configured/enabled for POP3 access. This would allow you to send out via normal SMTP through the gmail servers. Then you'd just send through smtp.gmail.com (on port 587) | |||
|
feedback
|
protected by Community♦ Nov 7 '11 at 12:11
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.