We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e43ef commit 14dfc04Copy full SHA for 14dfc04
config/debugbar.php
@@ -226,6 +226,7 @@
226
],
227
'mail' => [
228
'timeline' => false, // Add mails to the timeline
229
+ 'show_body' => false,
230
'full_log' => false,
231
232
'views' => [
src/LaravelDebugbar.php
@@ -436,6 +436,9 @@ function (\Illuminate\Database\Events\ConnectionEstablished $event) {
436
if ($config->get('debugbar.options.mail.full_log')) {
437
$mailCollector->showMessageDetail();
438
}
439
+ if ($config->get('debugbar.options.mail.show_body')) {
440
+ $mailCollector->showMessageBody();
441
+ }
442
443
if ($this->hasCollector('time') && $config->get('debugbar.options.mail.timeline')) {
444
$transport = $app['mailer']->getSymfonyTransport();
0 commit comments