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.
|
|
Something like this (sounds like you just need to change your SMTP server):
|
||
|
|
|
|
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. |
||
|
|
|
|
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) |
||
|
|
|
|
Here's a post on Suns' site on how to do this... http://forums.sun.com/thread.jspa?threadID=591321&messageID=3750881 |
||
|
|
|
|
Thanks to jodonnel and everyone else who answered. I'm accepting his answer because it was about 95% complete. 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
|
|||
|
|
|
|
Even though this question is closed, I'd like to post a counter solution, but now using Vesijama (Open Source JavaMail smtp wrapper):
|
||
|
|
|
|
This is what I do when i want to send email with attachment, work fine. :)
|
||
|
|
|
|
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:
|
||
|
|
|
Hi , I am new to this and must to work on java mail. when I searching I got yours code, Could you please tell me what I need to the following, -just copy the code what you post above. -updated username and password. - when the process reach this line "Transport.send(msg);" it hanging. after that no process while debug in eclipse. any idea that what I missed here.... Thanks Eye |
||
|
|
|
while running this code i am getting the exception Feb 3, 2009 11:47:35 AM com.addsoft.struts.NewClass main SEVERE: null javax.mail.SendFailedException: Sending failed; nested exception is: class javax.mail.AuthenticationFailedException at javax.mail.Transport.send0(Transport.java:218) at javax.mail.Transport.send(Transport.java:80) at com.addsoft.struts.NewClass.main(NewClass.java:74) can you please help me!! |
||
|
|
