27 lines
633 B
PHP
Executable File
27 lines
633 B
PHP
Executable File
<?
|
|
$name = $_REQUEST["name"];
|
|
$email = $_REQUEST["email"];
|
|
$to = "you@yourdomain.com"; // ENTER YOUR EMAIL ADDRESS
|
|
if (isset($email) && isset($name)) {
|
|
$email_subject = "$name sent you a message via YOUR SITE NAME"; // ENTER YOUR EMAIL SUBJECT
|
|
$headers = "MIME-Version: 1.0" . "\r\n";
|
|
$headers .= "Content-type:text/plain; charset=UTF-8" . "\r\n";
|
|
$headers .= "From: ".$name." <".$email.">\r\n"."Reply-To: ".$email."\r\n" ;
|
|
$msg = "
|
|
From: $name,
|
|
Email: $email";
|
|
|
|
$mail = mail($to, $email_subject, $msg, $headers);
|
|
|
|
if($mail)
|
|
{
|
|
echo 'success';
|
|
}
|
|
|
|
else
|
|
{
|
|
echo 'failed';
|
|
}
|
|
}
|
|
|
|
?>
|