I copy exactly the mime mail in PHP Professional from Wrox and wrote this litle code:
<?php
($DOCUMENT_ROOT . "/mime_mail.php.inc");
$mail=new mime_mail;
$mail->to="ugly@yahoo.com";
$mail->subject="Testing Mail";
$mail->body="This is a Test....";
$mail->send();
?>
but it giving error:
Fatal error: Call to undefined function: send() in /var/www/html/testing.php on line 12
can someone help me?