Have a question? Contact us!

Got a question? Would you like to donate a prize for the Black Weblog Awards? Would you like to advertise on our site? Are you a member of the press? Contact us through our handy-dandy contact form. All fields are required for submission.

Please do not submit nominations through this contact form. Any nominations received through this contact form will be automatically deleted from our system.

Sorry, but \"Name\" is a required field.

"; } if (!$_POST['email']) { $err .= "

Sorry, but \"Email\" is a required field.

"; } elseif(!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $_POST['email'])) { $err .= "

Error! You have entered an invalid email address.

"; } if(!$_POST['message']) { $err .= "

Uh oh! Looks like you're trying to send us a blank message! Try again.

"; } if(!$err) { echo "

Your message has been sent! Thanks for contacting us!

"; $eol="\r\n"; $mime_boundary=md5(time()); $headers .= 'From:'.$_POST[name].'<'.$_POST[email].'>'.$eol; $headers .= 'Reply-To: '.$_POST[name].'<'.$_POST[email].'>'.$eol; $headers .= 'Return-Path: '.$_POST[name].'<'.$_POST[email].'>'.$eol; // these two to set reply address $headers .= "Message-ID: <".$now." TheSystem@".$_SERVER['SERVER_NAME'].">".$eol; $headers .= "X-Mailer: PHP v".phpversion().$eol; // These two to help avoid spam-filters $message = $_POST[message]."$eol"."$eol"."From, ".$eol. "$_POST[name]"; mail($contact_email, 'Message from BWA Contact Form', $message, $headers); } else { echo "
"; echo $err; echo "
"; } } ?>