无法通过Yahoo SMTP发送电子邮件

时间:2015-10-20 23:46:56

标签: php

我正在尝试使用Yahoo SMTP服务器从位于本地Windows服务器上并基于Xampp的网站发送电子邮件。

因此,这就是我在sendmail设置中的内容:

smtp_server=smtp.mail.yahoo.com
smtp_port=465
smtp_ssl=auto
auth_username=box1@yahoo.com
auth_password=pswd1

然后在PHP中:

mail ('box1@yahoo.com', 'Static Mail 1', 'Static Message');
mail ('box2@yahoo.com', 'Static Mail 2', 'Static Message');

所以,我试图从一个雅虎帐户发送电子邮件到另一个,但它不起作用。 我尝试使用GMail SMTP发送电子邮件,它工作正常,但当我尝试通过Yahoo SMTP执行此操作时,我总是收到错误:

From address not verified - see http://help.yahoo.com/l/us/yahoo/mail/original/manage/sendfrom-07.html 

据我所知,当雅虎不允许代表它发送电子邮件时,这是一个常见的问题,但在我的情况下,我只在雅虎帐户之间发送邮件,我做错了什么?

交叉服务器请求的问题被描述为here,但由于某种原因,即使我只使用雅虎帐户,我也会遇到它。

1 个答案:

答案 0 :(得分:0)

似乎错误是非常自我解释的,为mail函数添加第四个参数,如下所示:

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>