我嘗試從本地主機發送郵件,但它不能正常工作。下面給出我的代碼。請看下面的代碼,並請告訴實際問題是什麼。由於無法從本地主機發送SMTP郵件()
郵件功能我用 - >
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = SMTP
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = NULL
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path = NULL
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters = NULL
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header = Off
; Log all mail() calls including the full path of the script, line #, to address and headers
mail.log = "D:\xampp\apache\logs\php_mail.log"
PHP代碼中使用 - >
<?php
$to = "[email protected], [email protected]";
$subject = "HTML email";
$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
// More headers
$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: mybo[email protected]' . "\r\n";
mail($to,$subject,$message,$headers);
?>
得到錯誤當執行PHP代碼上文>
Warning: mail() [function.mail]: Failed to connect to mailserver at "SMTP" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in D:\xampp\htdocs\mail.php on line 43
在此先感謝。
您使用的是什麼localhost程序?例如WAMP,XAMPP或本地VM? – Jelmer
我使用了XAMPP服務器。 – Vaibhav
您需要指定SMTP服務器的域或IP地址。在您的php.ini文件中是「SMTP」對實際設置的本地SMTP服務器的引用?如果沒有,您需要安裝並設置SMTP服務器。您可以從網上下載免費的SMTP服務器。 –