在windows-7 iis-7.5上设置smtp

时间:2011-08-27 08:10:20

标签: php email windows-7 smtp iis-7.5

我已使用iis7在本地笔记本电脑上配置了一个php / mysql应用程序进行测试。我使用php mail()在服务器上使用localhost smtp服务发送电子邮件,并希望在本地复制以进行测试。 (它在服务器上工作了很长时间,所以我只想在本地进行复制以进行测试。)

使用technet文章:http://technet.microsoft.com/en-us/library/cc772058(WS.10).aspx我能够配置我的SMTP设置,但仍然无法发送电子邮件。

我已经多次回收服务器而没有任何效果。

我运行了一个netstat -an并且没有任何东西正在侦听port25 - 我需要做些什么才能让smtp服务在port25上侦听?

我收到的错误:

  

PHP警告:mail()[function.mail]:   无法连接到“localhost”端口25的邮件服务器,   验证您的“SMTP”和“smtp_port”设置   php.ini或使用ini_set()

的php.ini:

SMTP = localhost
smtp_port = 25

3 个答案:

答案 0 :(得分:16)

您可以使用类似smtp4dev(http://smtp4dev.codeplex.com/)而不是iis进行测试。对我来说就像是一种魅力。

答案 1 :(得分:2)

Windows 7不提供SMTP服务。所以你必须使用第三方产品。这是一个众所周知的问题,但不确定为什么你没有通过在互联网上搜索找到它。

答案 2 :(得分:1)

我同意OP。 W7(甚至是Ultimate)在没有SMTP服务器的情况下发布并不是很明显(我很确定我们在Vista 64 Ultimate甚至XP上都有它),因此您必须确定要使用的服务器,无论是本地服务器,还是远程

如果服务器没有使用授权,那么这应该工作而不必乱用IIS7或IIS7 Express:

$smtpserver = 'host.domain.tld';
$port = 25;
$from = 'mailbox@domain.tld';
$replyto = $from;
$headers = 'From: ' . $from . "\r\n" . 'Reply-To: ' . $replyto . "\r\n" . 
    'X-Mailer: PHP/' . phpversion();
$to = 'mailbox@domain.tld';
$subject = 'Test Message';
ini_set('SMTP', $smtpserver);
ini_set('smtp_port', $port);
$message = wordwrap("Hello World!", 70);
$success = mail($to, $subject, $message, $headers);

如果服务器使用明文授权(不是TLS / SSL),那么添加凭据可能会有效,具体取决于您的PHP版本:

ini_set('username', 'yourusername');
ini_set('password', 'yourpwd');

如果服务器强制使用TLS / SSL连接凭据(如GMail),则Sourceforge xpm4包是一个简单的解决方案。有两种方法可以将它与GMail一起使用(这些方法直接来自随包提供的示例):

// manage errors
error_reporting(E_ALL); // php errors
define('DISPLAY_XPM4_ERRORS', true); // display XPM4 errors
// path to 'MAIL.php' file from XPM4 package
require_once '../MAIL.php';
// initialize MAIL class
$m = new MAIL;
// set from address
$m->From('username@gmail.com');
// add to address
$m->AddTo('client@destination.net');
// set subject
$m->Subject('Hello World!');
// set HTML message
$m->Html('<b>HTML</b> <u>message</u>.');
// connect to MTA server 'smtp.gmail.com' port '465' via SSL ('tls' encryption)
// with authentication: 'username@gmail.com'/'password'
// set the connection timeout to 10 seconds, the name of your host 'localhost'
// and the authentication method to 'plain'
// make sure you have OpenSSL module (extension) enable on your php configuration
$c = $m->Connect('smtp.gmail.com', 465, 'username@gmail.com', 'password', 'tls', 10,
            'localhost', null, 'plain')
        or die(print_r($m->Result));
// send mail relay using the '$c' resource connection
echo $m->Send($c) ? 'Mail sent !' : 'Error !';
// disconnect from server
$m->Disconnect();

IIS7 Express(我正在使用的)FastCGI PHP模块安装时启用了OpenSSL扩展支持。以上允许您在邮件内容中使用HTML标记。下面显示了使用xpm4包的第二种方法,对于纯文本消息(同样,示例来自包源):

// manage errors
error_reporting(E_ALL); // php errors
define('DISPLAY_XPM4_ERRORS', true); // display XPM4 errors
// path to 'SMTP.php' file from XPM4 package
require_once '../SMTP.php';
$f = 'username@gmail.com'; // from (Gmail mail address)
$t = 'client@destination.net'; // to mail address
$p = 'password'; // Gmail password
// standard mail message RFC2822
$m = 'From: '.$f."\r\n".
     'To: '.$t."\r\n".
     'Subject: test'."\r\n".
     'Content-Type: text/plain'."\r\n\r\n".
     'Text message.';
// connect to MTA server (relay) 'smtp.gmail.com' via SSL (TLS encryption) with 
// authentication using port '465' and timeout '10' secounds
// make sure you have OpenSSL module (extension) enable on your php configuration
$c = SMTP::connect('smtp.gmail.com', 465, $f, $p, 'tls', 10) or die(print_r($_RESULT));
// send mail relay
$s = SMTP::send($c, array($t), $m, $f);
// print result
if ($s) echo 'Sent !';
else print_r($_RESULT);
// disconnect
SMTP::disconnect($c);

上述两篇文章都与GMail合作,截至本文发布之日,使用IIS7而无需进行任何额外配置。