Redis – Laravel Mailable – Trying to get property 'email' of non-object
I have the following mailable: <?php namespace AppMail; use IlluminateBusQueueable; use IlluminateMailMailable; use IlluminateQueueSerializesModels; class UserLoginDetailsMail extends Mailable { use Queueable, SerializesModels; protected String $username; protected String $email; protected String $password; /** * Create a new message instance. * *…