Properties

Properties existing in the Solar_Mail_Message class.

Public

None.

Protected

$_Solar_Mail_Message

(array) Default configuration values.

$_atch

(array) Array of MIME part attachments for this message.

$_boundary

(string) The MIME boundary string to separate the parts in this message.

$_charset

(string) Character set used for this message.

$_config

(array) Collection point for configuration values.

Inherited from Solar_Base.

Note that you do not define config defaults in $_config directly.

<?php
// DO NOT DO THIS
protected $_config = array(
    'foo' => 'bar',
    'baz' => 'dib',
);

Instead, define config defaults in a protected property named for the class, withan underscore prefix.

For exmple, a "Vendor_Class_Name" class would define the default config array in "$_Vendor_Class_Name". This convention lets child classes inherit parent config keys and values.

<?php
// DO THIS INSTEAD
protected $_Vendor_Class_Name = array(
    'foo' => 'bar',
    'baz' => 'dib',
);

$_crlf

(string) The line ending to use for this message.

$_encoding

(string) Encoding used for this message.

$_from

(array) The "From:" address and display-name.

$_headers

(array) Array of custom additional headers.

$_html

(Solar_Mail_Message_Part) The Solar_Mail_Message_Part for the "text/html" portion of the message.

$_rcpt

(array) All recipient address and display-name values.

$_reply_to

(array) The "Reply-To:" address and display-name.

$_return_path

(string) The "Return-Path" value.

$_subject

(string) The "Subject" value.

$_text

(Solar_Mail_Message_Part) The Solar_Mail_Message_Part for the "text/plain" portion of the message.

$_transport

(Solar_Mail_Transport_Adapter) A Solar_Mail_Transport dependency object.

Private

None.



Local