tags:

views:

44

answers:

1

Hi All,

I am working in an web app, where i have to send an email to my users after some event happens. I wont receive any mails from them. How to proceed with this.

+3  A: 

You need

  1. an SMTP server
  2. commons-email (read the guide). It sits ontop of JavaMail
Bozho
Thanks for your response. How to check whether my server supports RFC2554 or not. This will be check during authentication. My server definitely needs authentication. Do you have any answers?
Manoj
Thanks. I used setAuthentication() method. It works for me.
Manoj