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. 🙂
axel-amghar liked this reply
You can use this option and may be will get some luck
https://laravel.com/docs/8.x/mail#previewing-mailables-in-the-browser
axel-amghar liked this reply
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.
hichxm, axel-amghar liked this reply
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community