
                             README.txt

The Smtp class declared in smtp.h and defined in smtp.cpp is a nice
wrapper class around the MIME++ DwSmtpClient class.  DwSmtpClient
operates at a fairly low level -- you have to control every part of the
dialog with the SMTP server.  In contrast, this Smtp class is a fairly
high-level class -- it manages to entire SMTP dialog.  It also provides
some nice convenience features:

   * It can optionally get the originator and recipients from the
     message headers

   * If the originator and recipient are obtained from the message
     headers, then it will also remove the Bcc line from the message
     before sending it

   * It provides an interface for reporting errors

The file smtp_ex.cpp contains a driver program that you can use to
experiment with the Smtp class.
