我用PHP编写了一个类,用于发送使用Gmail帐户的邮件。该类又使用PHPMailer库。该设置是Windows Vista上的WAMP 2.4。使用PHP中的microtime()
函数,我发现发送一封邮件需要5到6秒。在这种设置上运行的PHP脚本是否正常,我需要花费5-6秒才能发送一封邮件。这是该课程的代码。
<?php
require_once("phpmailer/class.phpmailer.php");
require_once("phpmailer/class.smtp.php");
class Mailer {
// Needs to be set per object
public $subject;
public $message;
public $to_name;
public $to;
private $mail; // This is the main mail object that'll be initialized
public function __construct() {
// Need to create a PHPMailer object in the constuctor and return it for use in this class.
$mail = new PHPMailer();
$from_name = "bleh";
$from = "bleh@gmail.com";
$username = "bleh";
$password = "bleh";
$mail->FromName = $from_name;
$mail->From = $from;
$mail->Username = $username;
$mail->Password = $password;
$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
// $mail->Port = 587; // Turns out, I dont need this one.
$mail->SMTPAuth = true; // gmail requires this
$mail->SMTPSecure = 'tls'; // gmail requires this
$this->mail = $mail;
}
function send() {
$mail = $this->mail; // The mail object
$mail->Subject = $this->subject;
$mail->Body = $this->message;
$mail->AddAddress($this->to, $this->to_name);
$result = $mail->Send();
return $result;
}
}
?>
用于测试此代码的代码 -
$startTime = microtime(true);
require_once("mailer.php");
$mailer = new Mailer();
$mailer->subject = "Test";
$mailer->message = "Test";
$mailer->to_name = "My Name";
$mailer->to = "anemail@address";
$mailer->send();
echo "Time: " . number_format(( microtime(true) - $startTime), 4) . " Seconds\n";
答案 0 :(得分:6)
SMTP很常见,需要花费很长时间 - 它甚至可以greetdelay/tarpit mechanisms的形式用作反垃圾邮件措施。在流量开始之前,RFC2821 section 4.5.3.2最多允许 5分钟的延迟。 SMTP不是用于交互式使用(因为它不能在那种情况下排队),并且在网页提交期间通过SMTP发送可能因此而受到影响。通过异步过程发送邮件或SMTP可以避免此问题。
在PHPMailer中,您可以启用SMTP调试输出,它会向您显示正在发生的事情,以便您能够看到花时间:
$mail->SMTPDebug = 2;
答案 1 :(得分:1)
正如我的评论所述,Gmail可能会限制您的速度。您的网络与Gmail通信的某些方面也可能导致此问题。
您可以从命令行手动开始与Gmail的SMTP会话。观察每个步骤需要多长时间,并检查可能从Gmail返回的任何代码/消息,指出问题。
有关如何创建手动SMTP会话的详细信息,请参阅
Connecting to smtp.gmail.com via command line
返回的消息将按照该答案中的指示进行Base64编码。您可以使用online Base64 decoder转换回纯文本。
注意:该链接显示Linux的说明。如果您没有要测试的Linux服务器,可以使用Cygwin(对于Windows)或不需要完整Cygwin安装的OpenSSH for Windows包
答案 2 :(得分:0)
我也遇到了同样的问题,大约30秒钟就可以发送电子邮件了。
问题是运行PHP服务器的系统挂起,直到发送电子邮件为止。
我尝试了许多解决方案,但是最简单的方法是在不同端口上本地启动另一个PHP服务器来处理邮件发送。
主PHP服务器(系统运行服务器)将邮件发送请求移交给邮件PHP服务器,并且不继续执行该过程。
仍然需要30秒钟的时间来发送电子邮件,但对主PHP服务器无效。