|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.oreilly.servlet.MailMessage
public class MailMessage
A class to help send SMTP email. It can be used by any Java program, not just servlets. Servlets are likely to use this class to:
This class is an improvement on the sun.net.smtp.SmtpClient class found in the JDK. This version has extra functionality, and can be used with JVMs that did not extend from the JDK. It's not as robust as the JavaMail Standard Extension classes, but it's easier to use and easier to install.
It can be used like this:
String mailhost = "localhost"; // or another mail host String from = "Mail Message Servlet"; String to = "to@somedomain.com"; String cc1 = "cc1@somedomain.com"; String cc2 = "cc2@somedomain.com"; String bcc = "bcc@somedomain.com"; MailMessage msg = new MailMessage(mailhost); msg.from(from); msg.to(to); msg.cc(cc1); msg.cc(cc2); msg.bcc(bcc); msg.setSubject("Test subject"); PrintStream out = msg.getPrintStream(); Enumeration enum = req.getParameterNames(); while (enum.hasMoreElements()) { String name = (String)enum.nextElement(); String value = req.getParameter(name); out.println(name + " = " + value); } msg.sendAndClose();
Be sure to set the from address, then set the recepient addresses, then set the subject and other headers, then get the PrintStream, then write the message, and finally send and close. The class does minimal error checking internally; it counts on the mail host to complain if there's any malformatted input or out of order execution.
An attachment mechanism based on RFC 1521 could be implemented on top of this class. In the meanwhile, JavaMail is the best solution for sending email with attachments.
Still to do:
Constructor Summary | |
---|---|
MailMessage()
Constructs a new MailMessage to send an email. |
|
MailMessage(java.lang.String host)
Constructs a new MailMessage to send an email. |
Method Summary | |
---|---|
void |
bcc(java.lang.String bcc)
Sets the bcc address. |
void |
cc(java.lang.String cc)
Sets the cc address. |
void |
from(java.lang.String from)
Sets the from address. |
java.io.PrintStream |
getPrintStream()
Returns a PrintStream that can be used to write the body of the message. |
void |
sendAndClose()
Sends the message and closes the connection to the server. |
void |
setHeader(java.lang.String name,
java.lang.String value)
Sets the named header to the given value. |
void |
setSubject(java.lang.String subj)
Sets the subject of the mail message. |
void |
to(java.lang.String to)
Sets the to address. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MailMessage() throws java.io.IOException
java.io.IOException
- if there's any problem contacting the mail serverpublic MailMessage(java.lang.String host) throws java.io.IOException
host
- the mail server to use
java.io.IOException
- if there's any problem contacting the mail serverMethod Detail |
---|
public void from(java.lang.String from) throws java.io.IOException
java.io.IOException
- if there's any problem reported by the mail serverpublic void to(java.lang.String to) throws java.io.IOException
java.io.IOException
- if there's any problem reported by the mail serverpublic void cc(java.lang.String cc) throws java.io.IOException
java.io.IOException
- if there's any problem reported by the mail serverpublic void bcc(java.lang.String bcc) throws java.io.IOException
java.io.IOException
- if there's any problem reported by the mail serverpublic void setSubject(java.lang.String subj)
public void setHeader(java.lang.String name, java.lang.String value)
public java.io.PrintStream getPrintStream() throws java.io.IOException
java.io.IOException
- if there's any problem reported by the mail serverpublic void sendAndClose() throws java.io.IOException
java.io.IOException
- if there's any problem reported by the mail server
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |