(Starting new post since this will go over character limit for one post)
Html of the page I linked can be seen by "view source".
And the php used (processForm.php) is here, this is the only external file:
Code:
<?php
// Define some constants
define( "RECIPIENT_NAME", "ABC" );
define( "RECIPIENT_EMAIL", "ABC@abc.com" );
define( "EMAIL_SUBJECT", "Website visitor message" );
// Read the form values
$success = false;
$senderName = isset( $_POST['senderName'] ) ? preg_replace( "/[^\.\-\' a-zA-Z0-9]/", "", $_POST['senderName'] ) : "";
$senderEmail = isset( $_POST['senderEmail'] ) ? preg_replace( "/[^\.\-\_\@a-zA-Z0-9]/", "", $_POST['senderEmail'] ) : "";
$message = isset( $_POST['message'] ) ? preg_replace( "/(From:|To:|BCC:|CC:|Subject:|Content-Type:)/", "", $_POST['message'] ) : "";
// If all values exist, send the email
if ( $senderName && $senderEmail && $message ) {
$recipient = RECIPIENT_NAME . " <" . RECIPIENT_EMAIL . ">";
$headers = "From: " . $senderName . " <" . $senderEmail . ">";
$success = mail( $recipient, EMAIL_SUBJECT, $message, $headers );
}
// Return an appropriate response to the browser
if ( isset($_GET["ajax"]) ) {
echo $success ? "success" : "error";
} else {
?>
<html>
<head>
<title>Thanks!</title>
</head>
<body>
<?php if ( $success ) echo "<p>Thanks for sending your message!</p>" ?>
<?php if ( !$success ) echo "<p>There was a problem sending your message.</p>" ?>
<p>Click your browser's Back button to return to the previous page.</p>
</body>
</html>
<?php
}
?>
Bookmarks