From bb99a5674b6cc51a19b6dbf1e28bf3cc591543ca Mon Sep 17 00:00:00 2001 From: Anthony Dumas Date: Sun, 27 Nov 2016 00:51:43 +0100 Subject: [PATCH] Changement d'adresse mail --- js/contact_me.js | 2 +- mail/contact_me.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/contact_me.js b/js/contact_me.js index 257f0b8..023f1fe 100644 --- a/js/contact_me.js +++ b/js/contact_me.js @@ -52,7 +52,7 @@ $(function() { $('#success').html("
"); $('#success > .alert-danger').html(""); - $('#success > .alert-danger').append("Désolé " + firstName + ", mon serveur de mail ne semble pas disponible, vous pouvez m'envoyer un mail directement à anthony-dumas@pad-panic.fr !"); + $('#success > .alert-danger').append("Désolé " + firstName + ", mon serveur de mail ne semble pas disponible, vous pouvez m'envoyer un mail directement à anthony.yvon.dumas@gmail.com !"); $('#success > .alert-danger').append('
'); //clear all fields $('#contactForm').trigger("reset"); diff --git a/mail/contact_me.php b/mail/contact_me.php index 7dc6754..8289f8d 100644 --- a/mail/contact_me.php +++ b/mail/contact_me.php @@ -16,7 +16,7 @@ $phone = $_POST['phone']; $message = $_POST['message']; // Create the email and send the message -$to = 'anthony-dumas@pad-panic.fr'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to. +$to = 'anthony.yvon.dumas@gmail.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to. $email_subject = "Website Contact Form: $name"; $email_body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message"; $headers = "From: noreply@pad-panic.fr\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.