- 论坛徽章:
- 0
|
我下了最新版本的pear:mail,我写的程序如下。
<?php
include('Mail.php');
$recipients = 'qiangxiao_cn@163.com';
$headers['From'] = 'qiangxiao_cn@yahoo.com.cn';
$headers['To'] = 'qiangxiao_cn@163.com';
$headers['Subject'] = 'Test message';
$body = 'Test message';
$params["host"] ="smtp.yahoo.com.cn";
$params["port"]="25";
$params["auth"] =true;
$params["username"] ="qiangxiao_cn";
$params["password"] ="*********"; //不能告诉你
// Create the mail object using the Mail::factory method
$mail_object =& Mail::factory('sendmail', $params);
$mail_object->send($recipients, $headers, $body);
?>
我觉得没有什么错,运行也没有错,就是邮箱里什么也没有,为什么阿 |
|