Jobs not firing but configured SQS

I am new to Laravel and i have configured SQS. I have an email send event which is handled in a controller. I see it it is called but it is not sending the email. What is the reason ?

Upvotes: 0

Views: 89

Answers (1)

Tithira
Tithira

Reputation: 662

This is a common case when you are not running queue worker. Check Documentation. Start your worker by using php artisan queue:work

Upvotes: 1

Related Questions