我附加了两个不同的PDF文件( mnlocalXampp 和 rnlocalXampp ),它们是两个不同pc的phpinfo。我已经检查了这两个信息,似乎两个都有相同的信息和使用相同版本的PHP,但我收到的电子邮件是 mnlocalXampp ,但不是 rnlocalXampp 。我也在两者中激活了openssl,但我仍然没有收到 rnlocalxampp 中的电子邮件。任何人都可以看看这两个文件,让我知道该文件和如何配置有什么区别。
<?php
require 'email_class/class.phpmailer.php';
$mail = new PHPMailer;
$mail->IsSMTP(); //Sets Mailer to send message using SMTP
$mail->Host = 'cp-in-10.webhostbox.net'; //Sets the SMTP hosts of your Email hosting, this for Godaddy
$mail->Port = '465'; //Sets the default SMTP server port
$mail->SMTPAuth = true; //Sets SMTP authentication. Utilizes the Username and Password variables
$mail->Username = 'mn@infotech.com'; //Sets SMTP username
$mail->Password = 'xxxxxxx'; //Sets SMTP password
$mail->SMTPSecure = 'ssl'; //Sets connection prefix. Options are "", "ssl" or "tls"
$mail->From = 'mn@infotech.com'; //Sets the From email address for the message
$mail->FromName = "mn"; //Sets the From name of the message
$mail->AddAddress("m@infotech.com"); //Adds a "To" address
$mail->AddCC("m@infotech.com"); //Adds a "Cc" address
$mail->WordWrap = 50; //Sets word wrapping on the body of the message to a given number of characters
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$mail->IsHTML(true); //Sets message type to HTML
$mail->Subject = 'Project CMS'; //Sets the Subject of the message
$mail->Body = $message; //An HTML or plain text message body
$mail->AddStringAttachment($doc, 'doc.pdf', 'base64', 'application/pdf');
$mail->Send(); ?>
上面的示例代码是 mnlocaXampp 的电子邮件配置。对于 rnlocalXampp ,我使用不同的端口(端口号:25),托管,启用SSL。
提前致谢
答案 0 :(得分:1)
很难知道从哪里开始。
您的代码基于一个过时的示例,并且您使用的是旧版本的PHPMailer,因此get the latest,并根据提供的示例创建代码。
在使用之前,您没有定义$doc
。
addStringAttachment
是错误的方法;请改用addAttachment
。
$headers
的定义毫无意义。
CC在你发送的地址上没有意义。
您无需在任何地方进行错误检查。
解决上述某些问题可能有助于解决您的问题。