MAIL -> boolean text ( string content [, string charset [, string encoding ]] )
Return TRUE if has been successfully set, FALSE if not.
Default values are:
string charset: us-ascii
string encoding: quoted-printable
string encoding possible values are: binary, 7bit, 8bit, quoted-printable or base64
Example (verification):
$m = new MAIL;
// set text/plain mail body message
$m->Text('text/plain message');
|
Example (deprecated):
$m = new MAIL;
$m->Text = array(
'content' => 'text/plain message', // required
'charset' => 'utf-8', // optional
'encoding' => 'base64' // optional
);
|
See Also: MAIL->Html()
[ Comments ]
Last update: Sunday, June 17, 2007