From f7e194dca53d9a39f34385c3a2a93d355ea63a56 Mon Sep 17 00:00:00 2001 From: axeloz Date: Tue, 29 Dec 2020 10:31:17 +0100 Subject: [PATCH] Update mail.php --- www/mail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/mail.php b/www/mail.php index 55e45fd..0a3925a 100644 --- a/www/mail.php +++ b/www/mail.php @@ -3,8 +3,8 @@ if (isset($_POST['to'])) { - $to = isset($_POST['to']) && !empty($_POST['to']) ? $_POST['to'] : 'noreply@wcie.fr'; - $from = isset($_POST['from']) && !empty($_POST['from']) ? $_POST['from'] : 'a.devignon@wcie.fr'; + $to = isset($_POST['to']) && !empty($_POST['to']) ? $_POST['to'] : 'noreply@domain.fr'; + $from = isset($_POST['from']) && !empty($_POST['from']) ? $_POST['from'] : 'paul@domain.fr'; $subject = isset($_POST['subject']) && !empty($_POST['subject']) ? $_POST['subject'] : 'Test subject'; $message = isset($_POST['message']) && !empty($_POST['message']) ? $_POST['message'] : 'This is a test message';