search
HomeBackend DevelopmentPHP TutorialSMTP Error: Could not connect to SMTP host.

我用网页运行时正常,能发送,用命令运行php文件时报错,主要代码经检查无误,如下

function sendmail($setEmail, $setName, $body, $subject) {	require_once("PHPMail/phpmailer.php");	$mail = new PHPMailer ( true ); // the true param means it will throw exceptions on errors, which we need to catch	$mail->IsSMTP (); // telling the class to use SMTP	try {		$mail->SMTPAuth = true; // enable SMTP authentication		$mail->SMTPSecure = SBT_SSL; // sets the prefix to the servier		$mail->Host = SBT_SMTP_HOST; // sets GMAIL as the SMTP server		$mail->Port = SBT_SMTP_PORT; // set the SMTP port for the GMAIL server		$mail->Username = SBT_SMTP_USER; // GMAIL username		$mail->Password = SBT_SMTP_PASS; // GMAIL password		$mail->AddReplyTo ( SBT_MAIL_FROM, SBT_MAIL_FROM_NAME );		$mail->AddAddress ( $setEmail, $setName );		$mail->SetFrom (SBT_SMTP_USER,SBT_SMTP_USER); //sender name		$mail->Subject = $subject;				$mail->MsgHTML ( $body );				if (! $mail->Send ()) {//(这边没报错)			echo "Message could not be sent. <p>";			echo "Mailer Error: " . $mail->ErrorInfo;			exit ();		} 	} catch ( phpmailerException $e ) {		echo $e->errorMessage (); //Pretty error messages from PHPMailer(就是这边输出错误的)	} catch ( Exception $e ) {		echo $e->getMessage (); //Boring error messages from anything else!	}}

问下是什么原因,目的是为了可以用linux计划任务来执行该PHP文件


回复讨论(解决方案)

我用的是gmail邮箱,465

$mail->Host ="smtp.gmail.com"; $mail->Port =465

错误代码呢?

SMTP Error: Could not connect to SMTP host,问题题目就是啊

截图了,不知道能不能上传,我试下啊[img=http://hi.csdn.net/space-48606-do-album-picid-730173-goto-down.html][/img]

这次好了吧!

估计就是扩展的问题,用命令行就会出现这个扩展那个扩展的问题

opensll扩展开了么?呵呵,应该开了吧,不开的话网页发送不会成功

确认这个文件能独立运行?

刚刚测试了一下,网页好使,命令行不好使,报错:说扩展php_pdo_mysql.dll找不到

当然可以独立运行,我代码又没全部贴出来,如果不发邮件,输出些文字,是没有问题的

扩展我开了的

php --ini 一下,看使用的ini是否和作为apache模块运行的php一致.

实在不行,我安装个linux环境来测试吧!
看网上说这个问题是php.ini没配好,我看了下,配的是SMTP,照他们说的改了也没用,关键是我SMTP已经重新赋值,用Gmail邮箱的服务器的啦

linux上不会出现这个问题的

php --ini 一下,看使用的ini是否和作为apache模块运行的php一致.
老虎头,能不能说详细点,修改ini文件吗?你看这样行不?

[mail function]; For Win32 only.SMTP = localhostsmtp_port = 25; For Win32 only.sendmail_from = me@example.com; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").;sendmail_path = "/usr/sbin/sendmail -t -i"; 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 =

引用 11 楼 foolbirdflyfirst 的回复:

php --ini 一下,看使用的ini是否和作为apache模块运行的php一致.

老虎头,能不能说详细点,修改ini文件吗?你看这样行不?
PHP code

[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25

; For Win32 ……
嗯,我没说清楚,我说的是命令php --ini,看cli下运行的php和apache模块运行的php是否公用一个ini文件
有时候phpcli单独安装的话会自带一个ini文件.

linux上不会出现这个问题的
大哥,你对linux很熟吗?那问下像我这样 require_once("PHPMail/phpmailer.php"); 载入了phpmailer能行不?我怕linux不接受phpmailer插件

老虎头,请帮我看看呢!

C:\wamp\bin\php\php5.2.6>php --iniConfiguration FILE (php.ini) Path: C:\WINDOWSLoaded Configuration FILE:         C:\wamp\bin\php\php5.2.6\php.iniScan FOR additional .ini files IN: (NONE)Additional .ini files parsed:      (NONE)

不可能,$mail->IsSMTP ();这个表明你已经设置了smtp发送了.
你现在的主要问题是找找看为什么socket连接不了smtp服务器.
防火墙也有可能.

老虎头,你说对了,不一致唉,怎么改?

Loaded Configuration FILE:         C:\wamp\bin\php\php5.2.6\php.ini
这个php.ini不是我目前运行的那个PHP.INI

wamp环境,应该是共用一份ini文件的.想再一次确定的话,php网页输出phpinfo(),看使用的ini文件,是否和这个一致.
命令:telnet smtp.gmail.com 465 ,确定能连接成功?

老虎头,你说对了,不一致唉,怎么改?
good
那么就使用php -c 命令引入你的正确ini路径

php -c ini路径 php文件

具体可以php -help查看命令参数



学习围观

检查一下防火墙,另外再检查一下发送图片附件的代码

wamp环境,应该是共用一份ini文件的.想再一次确定的话,php网页输出phpinfo(),看使用的ini文件,是否和这个一致.
命令:telnet smtp.gmail.com 465 ,确定能连接成功?
telnet smtp.gmail.com 465不能连接,那我应该用什么邮件服务器呢?

telnet都不行,肯定是你防火墙禁止了访问 

谢谢大家,解决了,首先是防火墙的问题,360防火墙忘关了,其次是ini问题

to  RXPY2007
php.ini什么问题,请说清楚些,我也遇到这个问题了,linux环境

希望楼主说的清楚点,怎么解决的,我的win环境也出现了一下问题

gmail注册的是企业版的吗

[Quote=引用 14 楼 rxpy2007 的回复:]

引用 11 楼 foolbirdflyfirst 的回复:

php --ini 一下,看使用的ini是否和作为apache模块运行的php一致.

老虎头,能不能说详细点,修改ini文件吗?你看这样行不?
PHP code

[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25

; For Win32 ……
嗯,我没说清楚,我说的是命令php --ini,看cli下运行的php和apache模块运行的php是否公用一个ini文件
有时候phpcli单独安装的话会自带一个ini文件.
  请问php --ini怎么用

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!