astroport/www/LOVELand/ajax.php

17 lines
495 B
PHP

<?php
$to = "support@qo-op.com"; // Your email address
$subject = "Astroport Web Contact";
if (isset($_REQUEST['phone'])) $phone = $_REQUEST['phone']; else $phone = "";
if (isset($_REQUEST['email'])) $email = $_REQUEST['email']; else $email = "";
$message = "Message de {$phone} / {$email}";
$headers = "From: support@qo-op.com"; // Who should it come from?
if( $phone != "" || $email != "" ) {
error_log("SEND EMail ". $email. " ". $phone );
mail($to, $subject, $message, $headers);
}
?>