MAIL -> boolean html ( 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/html mail body message
$m->Html('<b>text/html <i>message</i></b>');
|
Example (deprecated):
$m = new MAIL;
$m->Html = array(
'content' => '<b>text/html <i>message</i></b>', // required
'charset' => 'utf-8', // optional
'encoding' => 'base64' // optional
);
|
See Also: MAIL->Text()
[ Comments ]
Last update: Saturday, June 16, 2007