string &get (
array $param
= null
)
This function should be called once you have added the text/html/images/attachments. It builds the message and returns it. It does not send it. To send what this function returns (in conjunction with the headers() -function) you would need to use the Mail::send()-function
array $param - An associative array of parameters. These parameters affect the way the message is built.
$param["text_encoding"] - Type of encoding to use for the plain text part of the email. Default is "7bit".
$param["html_encoding"] - Type of encoding for the HTML part of the email. Default is "quoted-printable".
$param["head_charset"] - The character set to use for the headers. Default is "iso-8859-1".
$param["text_charset"] - The character set to use for the plain text part of the email. Default is "iso-8859-1".
$param["html_charset"] - The character set to use for the HTML part of the email. Default is "iso-8859-1".
string - the body of the message
This function can not be called statically.
Mail_Mime::get() has to be called before Mail_Mime::headers().