Hello,
i tried to dd($__data) in my mail templete blade view, but it is not working. Do someone have an equivalent to see my dumps?
You should dd()
the data before sending the mail, not in the actual mail.
If you want to debug how the mail looks, use something like MailHog or MailTrap. 🙂
You can use this option and may be will get some luck
https://laravel.com/docs/8.x/mail#previewing-mailables-in-the-browser
When you use helper dd()
, Laravel use in reality VarDumper package of Symfony.
The package add some JavaScript and HTML incompatible with web mails. And in addition the dd()
helper is die and dump (or dump and die) and is stop the code before mail sending.
If you use only dump()
I think you go to have better result.
Solutions for using dd()
:
dd()
before send mail. (best for me)or
Sorry for my bad English.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community