Yes I can make you one but you need a *PHP enabled* server. If you do have that then here's the code:
form.html (the html form)
Code:
<html>
<head>
</head>
<body>
<form action="mail.php" method="POST">
Name: <input type="text" name="name" id="name">
Email: <input type="text" name="mail" id="mail">
Subject: <input type="text" name="subject" id="subject">
Comments: <textarea name="comment" id="comment">Suggestions/comments here</textarea>
</form>
</body>
</html>
The php code:
mail.php (main server side)
PHP Code:
<?php
$to = "your@email.here"
$from = $_POST["mail"];
$name = $_POST["name"];
$message = $_POST["comment"];
$subject = $_POST["subject"];
if(mail($to, $subject, $message, 'From: <'.$name.'>'.$from)){
echo "Mail ($subject), was successfully sent.";
} else {
echo "The email ($subject) could not be sent.";
}
?>
Replace the your@email.here to your email address.
That's it.
Hope it helps.
Bookmarks