How do I view all pending jobs in my Redis queue so that I can cancel Mailable that has a specific pair of EmailAddress-sendTime pairs?
I am using Laravel 5.5 and have Mailable, which I successfully use as follows:
$sendTime = Carbon::now()->addHours(3); Mail::to($emailAddress) ->bcc([config('mail.supportTeam.address'), config('mail.main.address')]) ->later($sendTime, new MyCustomMailable($subject, $dataForMailView));
When this code runs, the job is added to my Redis queue.
I have already read the Laravel docs , but remain confused.
How can I cancel Mailable (prevent it from being sent)?
I would like to encode the webpage in my Laravel application, which makes this easy for me.
Or maybe there are tools that already make it easy (maybe FastoRedis?)? In this case, instructions on how to achieve this goal will also be helpful. Thanks!
Update:
I tried to view the Redis queue using FastoRedis, but I canβt figure out how to remove Mailable, for example, the red arrow points to this: 
source share