Reputation:
Server: Amazon ec2 Linux
Framework: Laravel 4.2
Here is my code:
<?php
\Mail::send( 'emails.plain.plain', array('body' => 'woo'), function ($sendemail) {
$sendemail->subject ( "subject" );
$sendemail->from( '[email protected]', 'From Name' );
$sendemail->to( '[email protected]', 'To Name' );
} );
?>
Here's what happened, I sent 1000 emails to my inbox because of Cron Job sending every minute.
Now I'm not receiving any emails.
Upvotes: 0
Views: 41
Reputation: 15476
You've been throttled by AWS.
Read up on the documentation for limits of AWS services: http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
Upvotes: 1