梨邮件功能不发送电子邮件

时间:2012-12-02 20:35:45

标签: php apache email pear

我遇到以下代码的问题,我无法弄明白。

我正在使用带有VALID值的这段代码,但它不会向收件人发送任何电子邮件......

<?php
include("Mail.php");
/* mail setup recipients, subject etc */
$recipients = "feedback@yourdot.com";
$headers["From"] = "user@somewhere.com";
$headers["To"] = "feedback@yourdot.com";
$headers["Subject"] = "User feedback";
$mailmsg = "Hello, This is a test.";
/* SMTP server name, port, user/passwd */
$smtpinfo["host"] = "smtp.mycorp.com";
$smtpinfo["port"] = "25";
$smtpinfo["auth"] = true;
$smtpinfo["username"] = "smtpusername";
$smtpinfo["password"] = "smtpPassword";
/* Create the mail object using the Mail::factory method */
$mail_object =& Mail::factory("smtp", $smtpinfo);
/* Ok send mail */
$mail_object->send($recipients, $headers, $mailmsg);
?>

任何人都可以帮助我,为什么不发送电子邮件,或者可能是什么问题?

0 个答案:

没有答案