Class email

Class email

Object
   |
   +----email

public class email
extends Object

Constructor Index

 o email(String, boolean)
 o email(boolean)

Method Index

 o main(String[])
Main routine, for standalone program execution
 o send(String, String)
Send an e-mail message.
 o send(String, String, String)
Send an e-mail message.
 o send(String, String, String, String)
Send an e-mail message.

Constructors

 o email
public email(String server,
             boolean DEBUG)
 o email
public email(boolean DEBUG)

Methods

 o main
public static void main(String[] args)
Main routine, for standalone program execution

 o send
public boolean send(String to,
                    String data)
Send an e-mail message. with no subject and from "system user" at "this machine"

 o send
public boolean send(String from,
                    String to,
                    String data)
Send an e-mail message. with no subject

 o send
public boolean send(String from,
                    String to,
                    String subject,
                    String data)
Send an e-mail message.