我一直在努力使用下面的代码从表单发送电子邮件到我的Gmail。但我放弃了。请参阅以下代码:
require_once('../php/Mail.php');
require_once('../php/Mail/RFC822.php');
//function to send email
function send_email($to,$from,$subject,$body,$is_body_html=false) {
if(! valid_email($to))
{
throw new Exception('This email address in invalid: '.htmlspecialchars($to));
}
if(! valid_email($from))
{
throw new Exception('This email address in invalid: '.htmlspecialchars($from));
}
//set up an array which can hold the SMTP server detail
$smtp=array();
$smtp['host']='ssl://smtp.gmail.com';
$smtp['port']=465;
$smtp['auth']=true;
$smtp['username']='my_username@gmail.com';
$smtp['password']='my_pass';
//create the mailer object using which can connect to your SMTP server
$mailer=Mail::factory('smtp',$smtp);
//check the returned value when creating the mailer object
if(PEAR::isError($mailer))
{
throw new Exception('Could not create the mailer object.');
}
//as the send method of the mailer object accepts the reciepients and headers as an array, create
//and set up the arrays
$recipients=array();
$recipients['to']=$to;
$headers=array();
$headers['from']=$from;
$headers['to']=$to;
$headers['subject']=$subject;
//check if the content is set to be html
if($is_body_html)
{
$headers['Content-type']='text/html';
}
//send the email
$result=$mailer->send($recipients,$headers,$body);
//check the returned value when sending the email
if(PEAR::isError($result))
{
throw new Exception('There was an error while trying to send the email: '.htmlspecialchars($result));
}
} //end of send_email function
我收到的错误信息如下
错误:异常'异常',显示消息'尝试发送电子邮件时出错:无法连接到ssl://smtp.gmail.com:465 [SMTP:无法连接套接字:连接超时(代码:-1,响应:)]在/home/biwucr/public_html/functions/mailer_function.php:49堆栈跟踪:#0 /home/biwucr/public_html/send-quote.php(62):send_email('yibeltalisme @gm ......','Yibeltal酸......',假)#1 {main}
我无法理解为什么。
我是否需要联系我的主办公司?
答案 0 :(得分:1)
Gmail的SMTP服务器地址为 SMTP.GOOGLEMAIL.COM ,而非SMTP.GMAIL.COM。
因此,您的设置应为:
// ...
$smtp=array();
$smtp['host']='ssl://smtp.googlemail.com';
// ...
答案 1 :(得分:1)
您可能想尝试从php.ini文件中取消注释掉这一行:
extension=php_openssl.dll