. */ /** * Mail message fields. * * @since 4.6.0 * @package Mail */ namespace Textpattern\Mail; class Message { /** * An array of senders. * * @var array */ public $from = array(); /** * An array of recipients. * * @var array */ public $to = array(); /** * The subject. * * @var string */ public $subject = ''; /** * The message body. * * @var string */ public $body = ''; /** * An array of reply to addresses. * * @var array */ public $replyTo = array(); /** * An array of carbon copy addresses. * * @var array */ public $cc = array(); /** * An array of blind carbon copy addresses. * * @var array */ public $bcc = array(); /** * An array of additional headers. * * @var array */ public $headers = array( 'X-Mailer' => 'Textpattern', 'Content-Transfer-Encoding' => '8bit', 'Content-Type' => 'text/plain; charset="UTF-8"', ); }