Tag: sendmail.exe

Sendmail Wamp Php

我花了整整一个上午在互联网上寻找这个解决scheme。 我已经在Windows 8.1上安装了wamp服务器,我试图用sendmail发送一些邮件( http://glob.com.au/sendmail/ )和我的Gmail帐户 当我configurationsendmail使用端口nº465我总是得到这个错误:套接字错误#10060Connection超时 如果我尝试使用端口nº587我错误日志上得到此行:连接closures优雅。 但没有电子邮件发送。 这是我的sendmail.ini文件 [sendmail] smtp_server=smtp.gmail.com ;I tried both: 587, 465 smtp_port=587 ; I tried: "blank, auto ssl, tls, none" smtp_ssl= error_logfile=error.log debug_logfile=debug.log auth_username=myaccoun@gmail.com auth_password=mypass hostname=localhost 这是php.ini文件 [mail function] smtp_port = 465 sendmail_path="C:\wamp\sendmail\sendmail.exe -t" mail.add_x_header = On ssl_module在apache上是活动的,php使用php_open_ssl和php_socket扩展名。 此外,我试图使用stunnel没有任何成功 编辑27/01/2014 我在sendmail.ini上设置了smtp_port = 465和smtp_ssl = ssl。 另外,我设置sendmail.exe必须作为Windows XP SP3程序运行。 这样做后,当我在Windows控制台上运行sendmail.exe,它正确地发送电子邮件。 但是,当wamp试图发送邮件时,我在sendmail的错误日志上得到这个错误:Socket […]

使用GMAIL邮件服务器在PHP中运行本地主机运行XAMMP的电子邮件

我尝试使用PHP邮件()函数发送一个电子邮件从本地主机到我的雅虎电子邮件帐户,回报说我成功地发送电子邮件,但我没有得到任何电子邮件。 我一直在阅读和尝试所谓的“简单的方式”发送电子邮件,但结果令人失望,没有一个为我工作。 以下是代码,configuration和错误消息。 有人可以用这个来启发我吗? 谢谢。 PHP代码 <?php $to = 'myemail@yahoo.com'; $subject = 'Fake sendmail test'; $message = 'If we can read this, it means that our fake Sendmail setup works!'; $headers = 'From: myemail@egmail.com' . "\r\n" . 'Reply-To: myemail@gmail.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); if(mail($to, $subject, $message, $headers)) { echo 'Email sent successfully!'; […]