All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class util.Mail

java.lang.Object
   |
   +----util.Mail

public class Mail
extends Object
This class is a Mail-Sending program.


Constructor Index

 o Mail()

Method Index

 o sendMail(Stack, String, String, String)
Send Mail.
 o sendMail(String, String, String, String)
Send Mail.

Constructors

 o Mail
 public Mail()

Methods

 o sendMail
 public static void sendMail(String toId,
                             String MailFrom,
                             String Subject,
                             String Content) throws Exception
Send Mail.

Parameters:
toID - Email Id to which the email is to be sent.
MailFrom - Email Id from which it is supposed to be sent.
Subject - Subject of the email
Content - Content of the mail
 o sendMail
 public static void sendMail(Stack MailTo,
                             String MailFrom,
                             String Subject,
                             String Content) throws Exception
Send Mail.

Parameters:
MailTo - Stack of the email Id's to which the email is to be sent.
MailFrom - Email Id from which it is supposed to be sent.
Subject - Subject of the email
Content - Content of the mail

All Packages  Class Hierarchy  This Package  Previous  Next  Index