php - Laravel 4 - using queue for email but not receiving -
i utilize aws sqs queue email sending work. i've got installed, got problem deliverability.
the problem is, web app send queue messages service successfully, messages not delivered email address. seems remain in queue forever.
i wondering what's causing this?
$email = input::get('email'); mail::queue('emails.changepass', $data, function($message) utilize ($email) { $message->to($email)->subject('change password'); });
i utilize gmail smtp send out email, works fine mail::send not mail::queue.
btw - there's no error i've checked log file.
php email laravel amazon-sqs beanstalk
No comments:
Post a Comment