Ok, so i have READ thru all the threads here...followed all the suggestions and still cant mail
i have php.ini set
smtp = mail.domain.com
sendmail_from = myname@hotmail.com (is this ok?)
here is my sendform.php
<?php
$msg = "Sender Name:\t$_POST[sender_name]\n";
$msg .= "Sender E-Mail:\t$_POST[sender_email]\n";
$msg .= "Message:\t$_POST[message]\n\n";
$recipient = "you@youremail.com";
$subject = "Web Site Feedback";
$mailheaders = "From: My Web Site <> \n";
$mailheaders .= "Reply-To: $_POST[sender_email]\n\n";
mail($recipient, $subject, $msg, $mailheaders);
what am i missing?
i am running win Nt, php 4.2.1, apache 2.0.39
the mail server is NOT running locally on my machine...but its on the same network. does this matter.
no email is being sent
TIA,
TGixer