1

IIS我正在使用在 Web 服务器上设置 smtpphp

php.ini文件中的 smtp 部分如下:

[mail function]
SMTP = outbound.mailhop.org
smtp_port = 25

auth_username = my_dyndns_username
auth_password = pwd

sendmail_from = no-reply@website.com

问题是当我尝试调用 mail() 函数时,smtp 服务器说

SMTP server response: 550 You must authenticate to use Dyn Standard SMTP

我在哪里可以告诉 IIS(或 php)用户名和密码以便在 dyndns 服务器上进行身份验证?

达里奥

4

2 回答 2

1

我发现swift mailer可以解决我的问题。

有了这个简单的脚本,我一切正常

$transport = Swift_SmtpTransport::newInstance('outbound.mailhop.org', 25)
                ->setUsername('user')
                ->setPassword('pwd');

$mailer = Swift_Mailer::newInstance($transport);


$message = Swift_Message::newInstance()
        ->setSubject($sbj)
        ->setFrom($from)
        ->setReplyTo($replyTo)
        ->setTo($to)
        ->setBody($msg);

$result = $mailer->send($message);

是有关如何处理其他功能/参数的书

于 2013-02-12T08:08:29.687 回答
0

SMTP在 PHP 中使用身份验证,您需要使用 MailPEAR扩展...这里有一篇很好的帖子,告诉您如何使用它。

基本上,您需要安装扩展程序windows instructions),然后配置一些类似这样的代码(来自上面的帖子):

<?php
 require_once "Mail.php";

 $from = "Sandra Sender <sender@example.com>";
 $to = "Ramona Recipient <recipient@example.com>";
 $subject = "Hi!";
 $body = "Hi,\n\nHow are you?";

 $host = "mail.example.com";
 $username = "smtp_username";
 $password = "smtp_password";

 $headers = array ('From' => $from,
   'To' => $to,
   'Subject' => $subject);
 $smtp = Mail::factory('smtp',
   array ('host' => $host,
     'auth' => true,
     'username' => $username,
     'password' => $password));

 $mail = $smtp->send($to, $headers, $body);

 if (PEAR::isError($mail)) {
   echo("<p>" . $mail->getMessage() . "</p>");
  } else {
   echo("<p>Message successfully sent!</p>");
  }
 ?>
于 2013-02-11T23:42:45.633 回答