diff --git a/mail/contact_me.php b/mail/contact_me.php
index 80a8b6e..524acf4 100755
--- a/mail/contact_me.php
+++ b/mail/contact_me.php
@@ -22,7 +22,7 @@ $message = $_POST['message'];
if (empty($_POST['_gotcha'])) { // If hidden field was filled out (by spambots) don't send!
// Create the email and send the message
- $to = 'contact@stevenmilanese.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
+ $to = 'developtheweb@protonmail.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@stevenmilanese.com\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.