38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|
$name = strip_tags(trim($_POST["name"]));
|
|
$email = filter_var(trim($_POST["email"]), FILTER_SANITIZE_EMAIL);
|
|
$subject = strip_tags(trim($_POST["subject"]));
|
|
$message = trim($_POST["message"]);
|
|
|
|
// Check that data was sent to the mailer.
|
|
if (empty($name) || empty($subject) || empty($message) || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
|
echo "Oops! There was a problem with your submission. Please complete the form and try again.";
|
|
exit;
|
|
}
|
|
|
|
// Set the recipient email address.
|
|
$recipient = "alrahma.isgl@gmail.com";
|
|
|
|
// Set the email subject.
|
|
$email_subject = "New contact from $name: $subject";
|
|
|
|
// Build the email content.
|
|
$email_content = "Name: $name\n";
|
|
$email_content .= "Email: $email\n\n";
|
|
$email_content .= "Message:\n$message\n";
|
|
|
|
// Build the email headers.
|
|
$email_headers = "From: $name <$email>";
|
|
|
|
// Send the email.
|
|
if (mail($recipient, $email_subject, $email_content, $email_headers)) {
|
|
echo "Thank you! Your message has been sent.";
|
|
} else {
|
|
echo "Oops! Something went wrong and we couldn't send your message.";
|
|
}
|
|
} else {
|
|
echo "There was a problem with your submission, please try again.";
|
|
}
|
|
?>
|