Describe the bug
I used to be able to beautifully see the emails inside the ray window now this is no longer possible
Versions
Ray version (you can see this in "About Ray"):
2.7.5
You can use composer show to get the version numbers of:
spatie/ray package version: 1.41.2
spatie/laravel-ray package version (if applicable): 1.36.2
PHP version:8.2.4
Laravel version:10.48.10
To Reproduce
Steps to reproduce the behavior:
Send an email I guess
Expected behavior
The email shows beautifully as a formatted email with the styles applied like it used to before.
Screenshots
Desktop (please complete the following information):
OS: [e.g. macOS]
Version [e.g. 22]
Additional context
I think they used to display beautifully before when I was using this in the MessageSendingListener
$address = $event->message->getTo()[0]->getAddress();
$mailableName = $event->message->mailable ?? 'unidentified email';
$logTitle = 'Sending ' . $mailableName . ' to ' . $address;
$logDetails = $event->message->toString();
Log::channel('email')->info($logTitle . PHP_EOL . $logDetails);
I used to do see the whole email and easily debug issues
I've downgraded back to
spatie/ray 1.41.2
spatie/laravel-ray 1.36.1
and now the emails display correctly I'll lock my dependency to this version for now I guess.
because this issue seems to be inactive for quite some time now, I've automatically closed it. If you feel this issue deserves some attention from my human colleagues feel free to reopen it.
Describe the bug I used to be able to beautifully see the emails inside the ray window now this is no longer possible Versions Ray version (you can see this in "About Ray"): 2.7.5 You can use
composer show
to get the version numbers of:PHP version:8.2.4 Laravel version:10.48.10
To Reproduce Steps to reproduce the behavior: Send an email I guess
Expected behavior The email shows beautifully as a formatted email with the styles applied like it used to before.
Screenshots
Desktop (please complete the following information):
Version [e.g. 22]
Additional context I think they used to display beautifully before when I was using this in the MessageSendingListener $address = $event->message->getTo()[0]->getAddress(); $mailableName = $event->message->mailable ?? 'unidentified email'; $logTitle = 'Sending ' . $mailableName . ' to ' . $address; $logDetails = $event->message->toString(); Log::channel('email')->info($logTitle . PHP_EOL . $logDetails); I used to do see the whole email and easily debug issues
I've downgraded back to spatie/ray 1.41.2 spatie/laravel-ray 1.36.1
and now the emails display correctly I'll lock my dependency to this version for now I guess.