i just added a mail for on my site, http://profile.slickeye.com. its still rough and not public yet but i cant get my mailer to work. heres my php
<?php
$sendTo = "mail@slickeye.com";
$subject = “Profile Email”;
$headers = “From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”];
$message = $_POST[“comments”];
$aim = $_POST[“aim”];
$phone = $_POSR[“phone”];
mail($sendTo, $subject, $comments, $headers);
?>
any help boys??