News

Log In Sponsors
Partner Sites
Cheaper cover for Commercial Lorry Insurance with an HGV Quote from iQuote.

GPS Tracking

Decorate football bedrooms with football wallpapers and football bedding

Decor ideas for decorating girl

problem with contact script



It seems to work fine, when I use my email address... but then when someone else uses their email address... they get an error " server could not send message" Any ideas? [code:2kuwpxqb]<? function show_form($email="", $message="",$subject="") { ?> <h2>Send us an E-mail</h2> <form action="contact.php" method="post"> Your E-mail address:<br> <input type=text name=email size=30 value="<?echo $email?>"><br> The Subject:<br> <input type=text name=subject size=30 value="<?echo $subject?>"><br> Your Message:<br> <textarea rows=5 cols=30 name=message><?echo $message?></textarea> <br> <input type=submit value="Send E-mail"> </form> <? } if (!isset($email) or !isset($message)) { show_form(); } else { if (empty($email) or empty($message)) { echo "<H1>There is a Problem:</H1>"; if (empty($email)) { echo "I need your email address in order to write back. Please fill it in below. Thank you."; } if (empty($message)) { echo "You did not write anything. Please write something. Thank You."; } show_form($email,$message,$subject); } else { if (empty($subject)) { $subject="your email"; } $sent = mail( "thefuryband@gmail.com", $subject,$message, "From: $email" ); if ($sent) { echo "<H1>Your Message Has Been Sent.</H1>"; echo "Thank you, <b>$email</b>. <p>I'll will read your email regarding ' <b>$subject</b> and reply soon."; } else { echo "<H1>There is a Problem:</H1> <p>The server was unable to send your mail."; } } } ?> [/code:2kuwpxqb]

Click here to read the whole forum topic