Hi all,
The below code seems to work fine but it doesn't send the email. Why is this?
require_once("Mail.php");
require_once("Mail/mime.php");
$html = "<HTML><BODY><p>Hello World, in HTML</p></BODY></HTML>";
$mime = new Mail_mime();
$mime->setTXTBody(strip_tags($html));
//$mime->addAttachment($html,"text/html","test.html",false);
$body = $mime->get();
$headers = $mime->headers(array("From" => "test@myhost.com.au", "Subject" => "Test"));
$mail =& Mail::factory("mail");
if(!$mail->send("ff20946@work.ie",$headers,$body))
{
echo "Could not send email";
}
else
{
echo 'sent';
}