无法使用gmail smtp和swift邮件程序发送邮件

时间:2022-11-15 10:53:25

I cant send the email message via gmail smtp on swift mailer, here is the code:

我无法通过swift邮件程序上的gmail smtp发送电子邮件,这里是代码:

<?php

require_once 'inc/swift_mailer/lib/swift_required.php';
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, 'ssl')
  ->setUsername('mysen2@gmail.com')
  ->setPassword('bestpasswordever')
  ;
$transport->setLocalDomain('[127.0.0.1]');
$mailer = Swift_Mailer::newInstance($transport);

$message = Swift_Message::newInstance($transport)
  ->setSubject('Test Mail')
  ->setFrom(array('mysen2@gmail.com' => 'John Doe'))
  ->setTo(array('testin3@gmail.com'))
  ->setBody('This is the test message.')
  ->addPart('<q>Here is the message itself</q>', 'text/html');

    if (!$mailer->send($message, $failures))
    {
        die("Errors occurred:<br/>" . $failures);
    }

?>

And the error message:

并且错误消息:

Fatal error: Uncaught exception 'Swift_TransportException' with message 'Connection could not be established with host smtp.gmail.com [Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? #-27264]' in /swift_mailer/lib/classes/Swift/Transport/StreamBuffer.php:266 Stack trace: #0 /swift_mailer/lib/classes/Swift/Transport/StreamBuffer.php(66): Swift_Transport_StreamBuffer->_establishSocketConnection() #1 /swift_mailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php(117): Swift_Transport_StreamBuffer->initialize(Array) #2 /swift_mailer/lib/classes/Swift/Mailer.php(79): Swift_Transport_AbstractSmtpTransport->start() #3 /usr/local/www/data/mail.php(19): Swift_Mailer->send(Object(Swift_Message), Array) #4 {main} thrown in /swift_mailer/lib/classes/Swift/Transport/StreamBuffer.php on line 266

致命错误:未捕获异常'Swift_TransportException',消息'无法与主机smtp一起建立连接[无法找到套接字传输“ssl” - 您是否忘记在配置PHP时启用它? #-27264]'在/swift_mailer/lib/classes/Swift/Transport/StreamBuffer.php:266堆栈跟踪:#0 /swift_mailer/lib/classes/Swift/Transport/StreamBuffer.php(66):Swift_Transport_StreamBuffer - > _ establishSocketConnection( )#1 /swift_mailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php(117):Swift_Transport_StreamBuffer-> initialize(Array)#2 /swift_mailer/lib/classes/Swift/Mailer.php(79):Swift_Transport_AbstractSmtpTransport-> start ()#3 /usr/local/www/data/mail.php(19):Swift_Mailer-> send(对象(Swift_Message),数组)在#swift_mailer / lib / classes / Swift / Transport /中抛出#4 {main}第266行的StreamBuffer.php

I guess its a problem with my server not containing the open ssl library:

我想我的服务器没有包含open ssl库的问题:

[Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?

[无法找到套接字传输“ssl” - 您是否忘记在配置PHP时启用它?

How can I fix that , then?

那怎么办呢?

also

Is using gmails SMTP good for sending like 50-100 mails per day? Or I should use something else (you're free to suggest and give me some tips)?

使用gmails SMTP是否适合每天发送50-100封邮件?或者我应该使用别的东西(你可以*地建议并给我一些提示)?

1 个解决方案

#1


4  

You can fix the [Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? by recompiling PHP using the --with-ssl[=DIR] option.

您可以修复[无法找到套接字传输“ssl” - 您是否忘记在配置PHP时启用它?通过使用--with-ssl [= DIR]选项重新编译PHP。

In order to be able to do that, you have to install the OpenSSL libraries onto your server. Depending on your OS, you can do something like apt-get install openssl-dev on Debian/Ubuntu, or yum install openssl-devel on RedHat/CentOS/Fedora.

为了能够做到这一点,您必须将OpenSSL库安装到您的服务器上。根据您的操作系统,您可以在Debian / Ubuntu上执行apt-get install openssl-dev,或者在RedHat / CentOS / Fedora上安装yum install openssl-devel。

Alternatively, you can just download and compile the latest version of OpenSSL yourself and use that with PHP.

或者,您可以自己下载并编译最新版本的OpenSSL,并将其与PHP一起使用。

If you do not run your server, then you need to ask your host to enable SSL in PHP for you.

如果您不运行服务器,则需要让主机为您启用PHP中的SSL。

Also: Gmail may work okay for sending 50-100 emails per day. It depends though. See their Program Policies for Gmail which does not go into a lot of detail. It sounds like if you have a pre-existing relationship with the 50-100 people you are emailing per day, then you may not be violating any terms, but you may want to confirm that by contacting them directly or doing more searching about their terms.

此外:Gmail可以正常工作,每天发送50-100封电子邮件。但这取决于。请参阅他们的Gmail计划政策,其中没有详细介绍。听起来如果您与每天发送电子邮件的50-100人之间存在预先存在的关系,那么您可能不会违反任何条款,但您​​可能希望通过直接联系他们或更多地搜索他们的条款来确认。

#1


4  

You can fix the [Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? by recompiling PHP using the --with-ssl[=DIR] option.

您可以修复[无法找到套接字传输“ssl” - 您是否忘记在配置PHP时启用它?通过使用--with-ssl [= DIR]选项重新编译PHP。

In order to be able to do that, you have to install the OpenSSL libraries onto your server. Depending on your OS, you can do something like apt-get install openssl-dev on Debian/Ubuntu, or yum install openssl-devel on RedHat/CentOS/Fedora.

为了能够做到这一点,您必须将OpenSSL库安装到您的服务器上。根据您的操作系统,您可以在Debian / Ubuntu上执行apt-get install openssl-dev,或者在RedHat / CentOS / Fedora上安装yum install openssl-devel。

Alternatively, you can just download and compile the latest version of OpenSSL yourself and use that with PHP.

或者,您可以自己下载并编译最新版本的OpenSSL,并将其与PHP一起使用。

If you do not run your server, then you need to ask your host to enable SSL in PHP for you.

如果您不运行服务器,则需要让主机为您启用PHP中的SSL。

Also: Gmail may work okay for sending 50-100 emails per day. It depends though. See their Program Policies for Gmail which does not go into a lot of detail. It sounds like if you have a pre-existing relationship with the 50-100 people you are emailing per day, then you may not be violating any terms, but you may want to confirm that by contacting them directly or doing more searching about their terms.

此外:Gmail可以正常工作,每天发送50-100封电子邮件。但这取决于。请参阅他们的Gmail计划政策,其中没有详细介绍。听起来如果您与每天发送电子邮件的50-100人之间存在预先存在的关系,那么您可能不会违反任何条款,但您​​可能希望通过直接联系他们或更多地搜索他们的条款来确认。