My customers who use AOL email cannot receive my email generated from php script I use. I try to look into AOL email guide but do not have a clue how to solve the problem. Please can anyone help? Here's my code:
require_once "Mail.php";
$host = "abc.com";
$from = $_POST['client']." <".$_POST['email'].">";
$subject = $_POST["subject"];
$message = stripslashes($_POST["textarea"]);
$headers = array ('From' => $from, 'To' => $biz_email, 'Subject' => $subject, 'MIME-Version' => '1.0', 'Content-type' => 'text/plain; charset=UTF-8');
$smtp = Mail::factory('smtp', array ('host' => $host, 'auth' => false, 'username' => '', 'password' => ''));
$mail = $smtp->send($biz_email, $headers, $message);