首页 > 解决方案 > laravel 电子邮件通知中的破碎样式

问题描述

我发送了几行列表:

->line(' - Submit your own recipes and link to your own site.Get customized newsletters based on your food and drink profile.')
->line(' - Take part in contests with amazing prizes and get invited to events!')
->line(' - Are you a business or brand? Create your own profile to promote to your audience!')

但是列表的最后一项会损坏样式:

图片

怎么修?

电子邮件样式

标签: phplaravellaravel-5laravel-5.4html-email

解决方案


使用以下代码:

class HelloUser extends Notification {
            public function via($notifiable){
                return ['mail'];
            }

            public function toMail($notifiable) {
                return (new MailMessage)
                    ->line('Submit your own recipes and link to your own site.Get customized newsletters based on your food and drink profile.')
                    ->line('Take part in contests with amazing prizes and get invited to events!')
                    ->line('Are you a business or brand? Create your own profile to promote to your audience!');
            }

        }

推荐阅读