Answer the question
In order to leave comments, you need to log in
Why does an application come from the site from the bot every hour?
I use Php Mailer to send emails from the application on the site. I noticed that empty applications constantly come day and night, almost every hour. What could it be? How to fix?
require 'PHPMailer/phpmailer/PHPMailer.php';
require 'PHPMailer/phpmailer/Exception.php';
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8';
$mail->setFrom('******');
$mail->addAddress('*******');
$mail->Subject = 'На сайте******* заполнили форму';
$mail->msgHTML($text);
$mail->addAttachment('abc.zip');
$mail->send();
Answer the question
In order to leave comments, you need to log in
It's not about PHP processing, it's about spamming. Add a captcha to the form itself, or a captcha-free check before sending an email
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question