I have write a simple Copy and Paste script for other members to use on there websites. Its a basic contact form script. It has no styling, ive just created it simple and basic, but if you need it styled/changed id be willing to do so for a small $fee.
There are many ways to send mail, this is just one of them and works well. Copy and paste, upload to your web server and test it out.
# Add your email address
$to = 'daniel@neville.tk';
# Add a default subject
$subject = 'You Have Mail From Your Website';
$loc = $_SERVER['PHP_SELF'];
$name = $_REQUEST['name'];
$email = $_REQUEST['email'];
$comments = $_REQUEST['comments'];
$submit = $_REQUEST['submit'];
$body = "You have received an email from $name \n ($email) \n \n $name wanted to tell you: $comments \n \n He sent this message from $loc";
if(isset($submit)) {
mail($to, $subject, $body);}
?>
Example email
Code:
You have received an email from Daniel Neville
(daniel@neville.tk)
Daniel Neville wanted to tell you: I really like this product!
He sent this message from /email.php