diff options
author | Adam T. Carpenter <atc@53hor.net> | 2022-02-08 20:44:57 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2022-02-08 20:44:57 -0500 |
commit | d2a96e757f7f4bae9aa2dbf5384d386a9aa7998a (patch) | |
tree | 2c9b878e45faca18f414431160de061f814da372 | |
parent | 5188d34aa691d6a6f7c4a7e79cff7229dad1bf3e (diff) | |
download | carpentertutoring-d2a96e757f7f4bae9aa2dbf5384d386a9aa7998a.tar.xz carpentertutoring-d2a96e757f7f4bae9aa2dbf5384d386a9aa7998a.zip |
fix: strip honeypot and add logging for mailer errors
-rw-r--r-- | header.php | 6 | ||||
-rw-r--r-- | index.php | 3 |
2 files changed, 1 insertions, 8 deletions
@@ -255,10 +255,6 @@ :target.modal .card { overflow: auto; } - - .honeypot { - display: none; - } </style> <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Indie+Flower&family=PT+Sans&display=swap" rel="stylesheet" /> @@ -277,8 +273,6 @@ </head> <body> - <a class="honeypot" href="mailto:honeypot@53hor.net">Honeypot</a> - <nav> <a href="/#contact">Contact Me</a> <a href="/#reviews">Reviews</a> @@ -366,8 +366,6 @@ <label for="email">Email Address</label> <input name="email" type="email" id="email" placeholder="jdoe85@aol.com" required /> - <input class="honeypot" name="content" type="text" /> - <label for="body">Question/Comment</label> <textarea name="body" id="body" placeholder="Briefly describe your inquiry, including any services or areas of study you're interested in." required></textarea> @@ -413,6 +411,7 @@ if (!$mail->send()) { echo 'There was a problem sending your message. Please try again later or send mail to <a href="mailto:amy@carpentertutoring.com">Amy@CarpenterTutoring.com</a>.'; echo '<!--Send error: ' . $mail->ErrorInfo . '-->'; + error_log($mail->ErrorInfo); } else { echo "Your message was successfully sent."; } |