Click here to join us on IRC (#charas on irc.freenode.net)!
...<form name="wooForm" action="emailSubmit.php" method="post">Email: <input type="text" name="email" /><br />Message: <textarea name="msg"></textarea><br /><br /><input type="submit" name="submit" value="Email" /></form>...
<?php// Probably not recommended for anything but a personal site// this is easily exploited, there's no filtering, etc.// Just send the email$sent = mail("youremail@something.com", "Website Email from " . $_POST['email'], $_POST['msg']);// Tell the user if the email was accepted for sending or notif ($sent) { echo "Mail sent successfully!";} else { echo "We're sorry, your message could not be sent.";}?>