小编Dar*_*der的帖子

为什么从PHP-Mailer发送电子邮件很慢

我正在使用PHP-Mailer。它的工作正常,但发送电子邮件非常慢。就像花了一些时间来发送电子邮件一样。但是大多数情况下,花费了超过2分钟或更长时间才花费了30分钟。是否有其他电子邮件发送方法。或以任何方式在3秒钟或10秒钟内发送邮件。

$mail->Timeout  = 36000;
$mail->Subject = "Registration";
$mail->From = "info@educatorguru.com";
$mail->FromName = "Educatorguru.com";
$mail->AddReplyTo( "info@educatorguru.com" );
$mail->AddAddress( $email );
$mail->Body =$message2;
$mail->IsHTML(true);
$mail->Send();
Run Code Online (Sandbox Code Playgroud)

php email phpmailer swiftmailer

1
推荐指数
1
解决办法
4930
查看次数

标签 统计

email ×1

php ×1

phpmailer ×1

swiftmailer ×1