Maurya Projects https://mauryaprojects.com IT Services in Website & Mobile Application Development Sat, 18 Sep 2021 15:54:41 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 Preview Laravel Notifications in Browser https://mauryaprojects.com/preview-laravel-notifications-in-browser/ https://mauryaprojects.com/preview-laravel-notifications-in-browser/#respond Sat, 18 Sep 2021 15:53:31 +0000 https://mauryaprojects.com/?p=9335 Many times you may like to preview your email notifications in the browser for testing because it becomes a very time taking Job to send an actual email and resolve the HTML issues in your email.

Here is how you can preview your Laravel email notifications in the browser and adjust the template easily.

$notification = (new NotificationClass())->toMail('sample@example.com');
$markdown = new \Illuminate\Mail\Markdown(view(), config('mail.markdown'));
 return $markdown->render($notification->markdown, $notification->data());

]]>
https://mauryaprojects.com/preview-laravel-notifications-in-browser/feed/ 0