Support the ongoing development of Laravel.io →
Views Blade Mail
Last updated 10 months ago.
0

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. 🙂

1

You can use this option and may be will get some luck

https://laravel.com/docs/8.x/mail#previewing-mailables-in-the-...

1
Solution

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() :

  • Use dd() before send mail. (best for me)

or

debugbar views section

Sorry for my bad English.

Last updated 2 years ago.
2

Sign in to participate in this thread!

Full Stack Europe

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2023 Laravel.io - All rights reserved.