How do I send an SMTP Message from Java?
|
|
Here's an example for Gmail smtp: http://tovare.com/articles/learnhowtosendemailviagmailfromjavain120seconds/
Now, do it this way only if you would like to keep your project dependencies to a minimum, otherwise i can warmly recommend using classes from apache http://commons.apache.org/email/ Regards Tov Are Jacobsen |
|||
|
|
|
|
See the JavaMail API |
||
|
|
|
|
Use the JavaMail API. |
||
|
|
|
|
Please see this post http://stackoverflow.com/questions/46663/how-do-you-send-email-from-a-java-app-using-gmail It is specific to gmail but you can substitute your smtp credentials. |
||
|
|
|
|
See the following tutorial at Java Practices. |
||
|
|
|
|
Try google before asking... |
||
|
|
|
Another way is to use aspirin (http://aspirin.dev.java.net/) like this:
..after having constructed your mimemessage as above. Aspirin is an smtp 'server' so you don't have to configure it. But note that sending email to a broad set of recipients isnt as simple as it appears because of the many different spam filtering rules receiving mail servers and client applications apply. |
||
|
|
