linux - Laravel 4.2 邮件突然停止在 Amazon ec2 linux 中工作

标签 linux email laravel-4 amazon-ec2 swiftmailer

Framework: Laravel 4.2

Server: Amazon ec2 Linux

昨天 \Mailing::send 还在工作,然后今天突然停止发送电子邮件。我不知道发生了什么。

这是我的 mail.php 配置:

<?php

return array(

    /* x
    |--------------------------------------------------------------------------
    | Mail Driver
    |--------------------------------------------------------------------------
    |
    | Laravel supports both SMTP and PHP's "mail" function as drivers for the
    | sending of e-mail. You may specify which one you're using throughout
    | your application here. By default, Laravel is setup for SMTP mail.
    |
    | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log"
    |
    */

    'driver' => 'mail',

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Address
    |--------------------------------------------------------------------------
    |
    | Here you may provide the host address of the SMTP server used by your
    | applications. A default option is provided that is compatible with
    | the Mailgun mail service which will provide reliable deliveries.
    |
    */

    'host' => 'mail.1fx.cash',

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Port
    |--------------------------------------------------------------------------
    |
    | This is the SMTP port used by your application to deliver e-mails to
    | users of the application. Like the host we have set this value to
    | stay compatible with the Mailgun e-mail application by default.
    |
    */
    'port' => 587,

    /*
    |--------------------------------------------------------------------------
    | Global "From" Address
    |--------------------------------------------------------------------------
    |
    | You may wish for all e-mails sent by your application to be sent from
    | the same address. Here, you may specify a name and address that is
    | used globally for all e-mails that are sent by your application.
    |
    */

    'from' => array('address' => 'info@philwebservicescloud.net', 'name' => '1Fx Cash'),

    /*
    |--------------------------------------------------------------------------
    | E-Mail Encryption Protocol
    |--------------------------------------------------------------------------
    |
    | Here you may specify the encryption protocol that should be used when
    | the application send e-mail messages. A sensible default using the
    | transport layer security protocol should provide great security.
    |
    */

    'encryption' => 'tls',

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Username
    |--------------------------------------------------------------------------
    |
    | If your SMTP server requires a username for authentication, you should
    | set it here. This will get used to authenticate with your server on
    | connection. You may also set the "password" value below this one.
    |
    */

    'username' => 'info@philwebservicescloud.net',

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Password
    |--------------------------------------------------------------------------
    |
    | Here you may set the password required by your SMTP server to send out
    | messages from your application. This will be given to the server on
    | connection so that the application will be able to send messages.
    |
    */

    'password' => '******',

    /*
    |--------------------------------------------------------------------------
    | Sendmail System Path
    |--------------------------------------------------------------------------
    |
    | When using the "sendmail" driver to send e-mails, we will need to know
    | the path to where Sendmail lives on this server. A default path has
    | been provided here, which will work well on most of your systems.
    |
    */

    'sendmail' => '/usr/sbin/sendmail -bs',

    /*
    |--------------------------------------------------------------------------
    | Mail "Pretend"
    |--------------------------------------------------------------------------
    |
    | When this option is enabled, e-mail will not actually be sent over the
    | web and will instead be written to your application's logs files so
    | you may inspect the message. This is great for local development.
    |
    */

    'pretend' => false,

);

我已尝试重新启动实例。它仍然没有发送。

最佳答案

首先查看是否有任何邮件卡在电子邮件假脱机中。如果它是空的,那么它就是 lavarels 问题。否则邮件会卡住并可能受到反垃圾邮件过滤器的影响。要解决它,请填写 form

关于linux - Laravel 4.2 邮件突然停止在 Amazon ec2 linux 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34784140/

相关文章:

Java邮件 : MessagingException: Got bad greeting from SMTP host — Error Code 250

android - 如何使用从我的应用程序发送并自动填充到 gmail 中的电子邮件值打开 Gmail 应用程序?

c - 如何在不同程序之间使用管道?

ruby - 为什么我使用 HTTParty 得到 IO::EAGAINWaitReadable?

linux - .text 与 .data 需要对齐

session - Laravel 在不同服务器的子域中维护 session

Laravel 4 - 编写复杂的查询

Android:如何在选项卡上运行/调试/测试 Android 应用程序?

python - 使用 exchangelib 将电子邮件标记为已读

php - Laravel 邮件无法从现场发送