if (mail("[email protected]", "Hi", "Message")) {
echo "success";
} else {
echo "fail";
}
Please use labels for all your fields, i.e.:
<label for="from">Your Email Address:</label>
This lets you click on the 'your email address' text and have it select the right input.
You can use the mail function to send an email out to yourself and include all their details.
PHP:if (mail("[email protected]", "Hi", "Message")) { echo "success"; } else { echo "fail"; }