setTXTBody($body); $headers = array('From' => $from, 'Subject' => $subject, 'Content-Type' => 'text/plain; charset=ISO-8859-1', 'Content-Transfer-Encoding' => 'quoted-printable'); $smtp = Mail::factory('smtp', array('host' => 'smtp.myisp.com', 'port' => 25)); $realbody = $message->get(); $realheaders = $message->headers($headers, true); $smtp->send($to, $realheaders, $realbody); ?>