Share Pastebin
Guest
Public paste!

Fenris

By: a guest | Aug 7th, 2009 | Syntax: PHP | Size: 0.50 KB | Hits: 225 | Expires: Never
Copy text to clipboard
  1. <?
  2.   $email = $_REQUEST['email'] ;
  3.   $message = $_REQUEST['message'] ;
  4.   $name = $_REQUEST['name'] ;
  5.  
  6.   if (!isset($_REQUEST['email'])) {
  7.     header( "Location: contact.html" );
  8.   }
  9.   elseif (empty($email) || empty($message) || empty($name)){
  10.     header( "Location: contacterror.html" );
  11.   }
  12.   else {
  13.     mail( "fenris@fenrisdesigns.com", "Fenris Designs Form",
  14.           "$message\nSent by: $email\n",
  15.           "From: $name <$email>" );
  16.     header( "Location: contactsuccess.html" );
  17.   }
  18. ?>