简体   繁体   English

为什么我的电子邮件不再发送了

[英]Why is my Email not sending anymore

Server: Amazon ec2 Linux 服务器:Amazon ec2 Linux

Framework: Laravel 4.2 框架:Laravel 4.2

Here is my code: 这是我的代码:

<?php 

           \Mail::send( 'emails.plain.plain', array('body' => 'woo'), function ($sendemail)  {
                $sendemail->subject ( "subject" );
                $sendemail->from( 'from@ymail.com', 'From Name' );
                $sendemail->to( 'to@gmail.com', 'To Name' );
            } ); 

?>

Here's what happened, I sent 1000 emails to my inbox because of Cron Job sending every minute. 这就是发生的情况,由于Cron Job每分钟发送一次,因此我向收件箱发送了1000封电子邮件。

Now I'm not receiving any emails. 现在我没有收到任何电子邮件。

You've been throttled by AWS. AWS让您无所适从。

Read up on the documentation for limits of AWS services: http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html 阅读有关AWS服务限制的文档: http : //docs.aws.amazon.com/general/latest/gr/aws_service_limits.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM