I was wondering if anyone could inform me about sending e-mail with Java SE. I'm really not sure what class handles this, or even if there is one for it. All I really want to do is have my Java SE application send e-mails to alert users. Everything I found through Googling regarding e-mails was J2EE.
All I really need is direction on where to look, but an example would be great too.
Regards,<br />Joe<br /> <br />"Always program as if the person who will be maintaining your program is a violent psychopath that knows where you live."<br />--Martin Golding
Jon Parise
Ranch Hand
Joined: Jul 03, 2007
Posts: 81
posted
0
Thanks that is exactly what I needed!
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35256
7
posted
0
The JavaMail allows one to access a mail server when using J2SE or J2EE. It's of little help if no mail server is available. That's when you need Aspirin - as embeddable email server. It's perfect if you just need to send email (and not receive it), since it doesn't rely on an external email server being available.
Aspirin and Java Mail sound like just what I need. I've downloaded both and will try incorporating them into my App when I get a chance. It one of those "You can work on this project in your spare time" applications. As if Engineers ever have "spare time"....