beyondcode / helo-laravel

HELO Laravel helper package to add
MIT License
87 stars 24 forks source link

Debug information not populating when mail is sent through the queue #14

Closed stephenhowells closed 4 years ago

stephenhowells commented 4 years ago

I have a basic mail method in a controller:

Mail::to($request->user())
    ->queue(new SignedIn($data));

Helo does receive the message as expected but despite the optional package being installed, it doesn't send the debug information to Helo. I've tried using both sync and Horizon and neither will include debug information. The following code, skipping the queue, does send the debug information:

Mail::to($request->user())
    ->send(new SignedIn($data));
zupolgec commented 4 years ago

See #5 and #12.

stephenhowells commented 4 years ago

@zupolgec Oops, okay closing the issue.