0

我使用 PHPMailer 和 smtp2go 构建了一个简单的功能,我可以发送电子邮件,现在我如何对电子邮件进行分析,获取发送的电子邮件和打开的电子邮件,退回邮件?

我的功能是:

       require("PHPMailer-master/class.phpmailer.php"); 
// path to the PHPMailer class.

function sendmail(){

   $mail = new PHPMailer();
   $mail->IsSMTP();
   $mail->Mailer = "smtp";
   $mail->Host = "smtpcorp.com"; 
//Enter your SMTP2GO account's SMTP server.

   $mail->Port = "2525"; 
// 8025, 587 and 25 can also be used. Use Port 465 for SSL.

   $mail->SMTPAuth = true;
   //$mail->SMTPSecure = 'ssl'; 
// Uncomment this line if you want to use SSL.

   $mail->Username = "";
   $mail->Password = "";

   $mail->From     = "";
   $mail->FromName = "";
   $mail->AddAddress("", "Rachel Recipient");
   $mail->AddReplyTo("", "Sender's Name");

   $mail->Subject  = "Hi!";
   $mail->Body     = "Hi! How are you?";
   $mail->WordWrap = 50;  

   if(!$mail->Send()) {
        echo 'Message was not sent.';
        echo 'Mailer error: ' . $mail->ErrorInfo;
        exit;
   } else {
        echo 'Message has been sent.';
   }

}


sendmail();

问候,

4

1 回答 1

0

这是来自 SMTP2GO 的查理。要访问退回数据/报告,您有 3 个选项: 1) 登录到您的 SMTP2GO 控制面板,然后单击“报告 > 退回”,您可以在其中查看和下载过去的退回。2) 使用我们的 API。3) 使用我们的回调功能(设置 > 更多 > 回调)。

如果您想了解有关上述内容的任何信息,请直接从以下页面与我们联系,我们的团队将为您提供帮助: http ://www.smtp2go.com/support

于 2013-06-19T07:12:34.250 回答