贝宝IPN文件无法向买家发送电子邮件,但会向我发送

时间:2018-08-16 10:42:55

标签: php email phpmailer paypal-ipn

我有一个Paypal IPN文件,一旦我付款,该文件应将序列号发送给客户。过去一切正常。最近,它仍然向我发送了一份副本,但几乎没有传达给买方。这是php代码的一部分-任何人都可以看到问题所在吗? 干杯,格雷格斯顿

require '../PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer;

$mail->addAddress($payer_email, $first_name." ".$last_name); // doesn't get through
$mail->addAddress('admin@studio-soft.co.uk', "Admin copy");  // is OK
$mail->setFrom('paypal@studio-soft.co.uk', 'StudioSoft');
$mail->addReplyTo('admin@studio-soft.co.uk', 'StudioSoft');

$mail->SMTPAuth = true;
$mail->isSMTP();
$mail->Host = "ssl://host54.servers.prgn.misp.co.uk:465";  // Is this the problem?

0 个答案:

没有答案