Ниже приведен код phpmailer, который я использую:
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require '../vendor/autoload.php';
$mail = new PHPMailer(true);
try {
$mail->SMTPDebug = 2;
$mail->isSMTP();
$mail->Host = as given in the configure mail client window;
$mail->SMTPAuth = true;
$mail->Username =as given in the configure mail client window;
$mail->Password = as given in the configure mail client window;
$mail->SMTPSecure = 'tls' ;
$mail->Port = 465;
$mail->setFrom('my email', 'my name');
$mail->addAddress('email', 'name');
$mail->isHTML(true);
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
echo 'Message has been sent'; }
catch (Exception $e) {
echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
Файл error_log
говорит:
PHP Warning: stream_select(): unable to select [4]: Interrupted system call (max_fd=5) in /root/vendor/phpmailer/phpmailer/src/SMTP.php on line 1124
Я пробовал много примеров, иногда он говорит connect() failed,
иногда couldn't connect to host
, а иногда страница продолжает загружаться, а электронное письмо не отправляется, что происходит?и как мне это настроить.Я использую Godaddy Cpanel PHP 7.