Welcome to the course. We will begin talking about Laravel queues from a classic simple example: sending an email.
Why You Would Need Queues?
Sending an email takes time. If, for example, after registration, you need to send emails to administrators, this would fire several email notifications, and that could take a few seconds. Those couple of seconds are too long for the user to wait.
Example: Email Notifications to Administrators
Imagine a typical Laravel application scenario. The user registers to your application, and after it is created