SueHubert Posted April 8, 2006 Share Posted April 8, 2006 Ello all,I am hoping that someone will be able to help because i am officially stumped. I am trying to create a contact form for my website. I have created the form and the php script as the backend..they both work...well kinda. I get confirmation that the email was sent...norton antivirus even scans the message...but when i check my inbox there is no email....help! so confused!Cheers :-)Su Quote Link to comment Share on other sites More sharing options...
TheUkSniper Posted April 8, 2006 Share Posted April 8, 2006 are you running the mail server off your own computer?? if so then your mail has probally been put in ur junk email folder Quote Link to comment Share on other sites More sharing options...
SueHubert Posted April 8, 2006 Author Share Posted April 8, 2006 Nope i have checked but nothing...:-(... Quote Link to comment Share on other sites More sharing options...
MikeFairbrother Posted April 8, 2006 Share Posted April 8, 2006 Is it set to be from a specific place, like from system@system.com..Post your coding?Maybe Norton is also blocking it as recognised/potential SPAM? Quote Link to comment Share on other sites More sharing options...
TheUkSniper Posted April 8, 2006 Share Posted April 8, 2006 is there a log for whatever program ur using to send the email so u can see if it has been sent out? Quote Link to comment Share on other sites More sharing options...
SueHubert Posted April 8, 2006 Author Share Posted April 8, 2006 Thanks for the replies - its not norton antivirus because i have tried it with it switched off. here is my php script:<?if (isset($_POST['submitted'])) {$errors = array();if (empty($_POST['name'])){ $errors[] = 'Enter Name.';}if (empty($_POST['email'])){ $errors[] = 'Enter Email.';}if (empty($_POST['comments'])){ $errors[] = 'Comments.';}if(empty($errors)) {$body = "Thanks for your comments";mail ($_POST['email'], 'Thanks',$body, 'From: admin@locahost');echo '<h1 id="mainhead">Thanks</h1><p>All done.</p><p><br /></p>';} else {echo '<h1 id="mainhead">Error!</h1><p class="error">The following errors occured:<br />';foreach ($errors as $msg) {echo " - $msg<br />\n";} echo '</p><p>Try again.</p><p><br /></p>';}}?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.