SMTP :: boolean text ( string value [, string charset [, string encoding [, string disposition ]]] )
Returns TRUE if has been successfully set, FALSE if not.
Default values are:
string charset: iso-8859-1
string encoding: quoted-printable
string disposition: inline
string encoding possible values are: 7bit, 8bit, quoted-printable, base64
string disposition possible values are: attachment, inline
Example:
$mail = new SMTP;
$mail->Text('text/plain message', 'UTF-8', '8bit') OR die('error');
|
[ Comments ]
Last update: Friday, June 16, 2006