anand wrote:

> Can you suggest me some website where I can find some information/code
> for sending mail from java using SMTP.

http://java.sun.com/ - there is a standard API called javax.mail

It handles MIME and all that clever stuff; however it takes a bit of code: on
Unix, it may well be easier to do something like:

#!/bin/sh
java com.foo.mycode.StatusCheckClass | /usr/bin/mail -s "Status Update"
[EMAIL PROTECTED]



Reply via email to