#include <inetmail.h>
Inheritance diagram for PRFC822Channel:
Public Types | |
enum | Direction { Sending, Receiving } |
Public Member Functions | |
PRFC822Channel (Direction direction) | |
~PRFC822Channel () | |
BOOL | Close () |
virtual BOOL | Write (const void *buf, PINDEX len) |
void | NewMessage (Direction direction) |
PString | MultipartMessage () |
BOOL | MultipartMessage (const PString &boundary) |
void | NextPart (const PString &boundary) |
void | SetFromAddress (const PString &fromAddress) |
void | SetToAddress (const PString &toAddress) |
void | SetCC (const PString &ccAddress) |
void | SetBCC (const PString &bccAddress) |
void | SetSubject (const PString &subject) |
void | SetContentType (const PString &contentType) |
void | SetContentAttachment (const PFilePath &filename) |
void | SetTransferEncoding (const PString &encoding, BOOL autoTranslate=TRUE) |
void | SetHeaderField (const PString &name, const PString &value) |
BOOL | SendWithSMTP (const PString &hostname) |
BOOL | SendWithSMTP (PSMTPClient *smtp) |
Static Public Member Functions | |
static const PString & | MimeVersionTag () |
static const PString & | FromTag () |
static const PString & | ToTag () |
static const PString & | CCTag () |
static const PString & | BCCTag () |
static const PString & | SubjectTag () |
static const PString & | DateTag () |
static const PString & | ReturnPathTag () |
static const PString & | ReceivedTag () |
static const PString & | MessageIDTag () |
static const PString & | MailerTag () |
static const PString & | ContentTypeTag () |
static const PString & | ContentDispositionTag () |
static const PString & | ContentTransferEncodingTag () |
Protected Member Functions | |
BOOL | OnOpen () |
Protected Attributes | |
BOOL | writeHeaders |
PMIMEInfo | headers |
BOOL | writePartHeaders |
PMIMEInfo | partHeaders |
PStringList | boundaries |
PBase64 * | base64 |
PSMTPClient mail("mailserver");
if (mail.IsOpen()) {
PRFC822Channel message;
message.SetFromAddress("Me@here.com.au");
message.SetToAddress("Fred@somwhere.com");
if (message.Open(mail)) {
if (mail.BeginMessage("Me@here.com.au", "Fred@somwhere.com")) {
if (!message.Write(myMessageBody))
PError << "Mail write failed." << endl;
if (!message.EndMessage())
PError << "Mail send failed." << endl;
}
}
}
else
PError << "Mail conection failed." << endl;
PRFC822Channel::PRFC822Channel | ( | Direction | direction | ) |
Construct a RFC822 aware channel.
direction | /< Indicates are sending or receiving a message |
PRFC822Channel::~PRFC822Channel | ( | ) |
Close the channel before destruction.
BOOL PRFC822Channel::Close | ( | ) | [virtual] |
Close the channel. This assures that all mime fields etc are closed off before closing the underliying channel.
Reimplemented from PIndirectChannel.
virtual BOOL PRFC822Channel::Write | ( | const void * | buf, | |
PINDEX | len | |||
) | [virtual] |
Low level write to the channel.
This override assures that the header is written before the body that will be output via this function.
buf | Pointer to a block of memory to write. |
len | Number of bytes to write. |
Reimplemented from PIndirectChannel.
void PRFC822Channel::NewMessage | ( | Direction | direction | ) |
Begin a new message. This may be used if the object is to encode 2 or more messages sequentially. It resets the internal state of the object.
direction | Indicates are sending or receiving a message |
PString PRFC822Channel::MultipartMessage | ( | ) |
Enter multipart MIME message mode. This indicates that the message, or individual part within a message as MIME is nestable, is a multipart message. This form returns the boundary indicator string generated internally which must then be used in all subsequent NextPart() calls.
Note this must be called before any writes are done to the message or part.
BOOL PRFC822Channel::MultipartMessage | ( | const PString & | boundary | ) |
Enter multipart MIME message mode. This indicates that the message, or individual part within a message as MIME is nestable, is a multipart message. In this form the user supplies a boundary indicator string which must then be used in all subsequent NextPart() calls.
Note this must be called before any writes are done to the message or part.
void PRFC822Channel::NextPart | ( | const PString & | boundary | ) |
Indicate that a new multipart message part is to begin. This will close off the previous part, and any nested multipart messages contained therein, and allow a new part to begin.
The user may adjust the parts content type and other header fields after this call and before the first write of the parts body. The default Content-Type is "text/plain".
Note that all header fields are cleared from the previous part.
void PRFC822Channel::SetFromAddress | ( | const PString & | fromAddress | ) |
Set the sender address. This must be called before any writes are done to the channel.
fromAddress | Senders e-mail address |
void PRFC822Channel::SetToAddress | ( | const PString & | toAddress | ) |
Set the recipient address(es). This must be called before any writes are done to the channel.
toAddress | Recipients e-mail address (comma separated) |
void PRFC822Channel::SetCC | ( | const PString & | ccAddress | ) |
Set the Carbon Copy address(es). This must be called before any writes are done to the channel.
ccAddress | Recipients e-mail address (comma separated) |
void PRFC822Channel::SetBCC | ( | const PString & | bccAddress | ) |
Set the Blind Carbon Copy address(es). This must be called before any writes are done to the channel.
bccAddress | Recipients e-mail address (comma separated) |
void PRFC822Channel::SetSubject | ( | const PString & | subject | ) |
Set the message subject. This must be called before any writes are done to the channel.
subject | Subject string |
void PRFC822Channel::SetContentType | ( | const PString & | contentType | ) |
Set the content type. This must be called before any writes are done to the channel. It may be set again immediately after any call to NextPart() when multipart mime is being used.
The default Content-Type is "text/plain".
contentType | Content type in form major/minor |
void PRFC822Channel::SetContentAttachment | ( | const PFilePath & | filename | ) |
Set the content disposition for attachments. This must be called before any writes are done to the channel. It may be set again immediately after any call to NextPart() when multipart mime is being used.
Note that this will alter the Content-Type field to
filename | Attachment filename |
void PRFC822Channel::SetTransferEncoding | ( | const PString & | encoding, | |
BOOL | autoTranslate = TRUE | |||
) |
Set the content transfer encoding. This must be called before any writes are done to the channel. It may be set again immediately after any call to NextPart() when multipart mime is being used.
If the encoding is "base64" (case insensitive) and , all writes will be treated as binary and translated into base64 encoding before output to the underlying channel.
encoding | Encoding type |
autoTranslate | Automatically convert to encoding type |
Set the and arbitrary header field. This must be called before any writes are done to the channel.
name | MIME fields tag |
value | MIME fields contents |
static const PString& PRFC822Channel::MimeVersionTag | ( | ) | [static] |
static const PString& PRFC822Channel::FromTag | ( | ) | [static] |
static const PString& PRFC822Channel::ToTag | ( | ) | [static] |
static const PString& PRFC822Channel::CCTag | ( | ) | [static] |
static const PString& PRFC822Channel::BCCTag | ( | ) | [static] |
static const PString& PRFC822Channel::SubjectTag | ( | ) | [static] |
static const PString& PRFC822Channel::DateTag | ( | ) | [static] |
static const PString& PRFC822Channel::ReturnPathTag | ( | ) | [static] |
static const PString& PRFC822Channel::ReceivedTag | ( | ) | [static] |
static const PString& PRFC822Channel::MessageIDTag | ( | ) | [static] |
static const PString& PRFC822Channel::MailerTag | ( | ) | [static] |
static const PString& PRFC822Channel::ContentTypeTag | ( | ) | [static] |
static const PString& PRFC822Channel::ContentDispositionTag | ( | ) | [static] |
static const PString& PRFC822Channel::ContentTransferEncodingTag | ( | ) | [static] |
BOOL PRFC822Channel::SendWithSMTP | ( | const PString & | hostname | ) |
Send this message using an SMTP socket. This will create a PSMTPClient and connect to the specified host then send the message to the remote SMTP server.
BOOL PRFC822Channel::SendWithSMTP | ( | PSMTPClient * | smtp | ) |
Send this message using an SMTP socket. This assumes PSMTPClient is open the sends the message to the remote SMTP server.
BOOL PRFC822Channel::OnOpen | ( | ) | [protected, virtual] |
This callback is executed when the Open() function is called with open channels. It may be used by descendent channels to do any handshaking required by the protocol that channel embodies.
The default behaviour is to simply return TRUE.
Reimplemented from PIndirectChannel.
BOOL PRFC822Channel::writeHeaders [protected] |
PMIMEInfo PRFC822Channel::headers [protected] |
BOOL PRFC822Channel::writePartHeaders [protected] |
PMIMEInfo PRFC822Channel::partHeaders [protected] |
PStringList PRFC822Channel::boundaries [protected] |
PBase64* PRFC822Channel::base64 [protected] |