Laravel电子邮件通知中的样式损坏

时间:2018-08-01 07:06:39

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

我发送几行清单:

->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!')

但是列表的最后一项样式变坏了:

Image

如何解决?

Email styles

1 个答案:

答案 0 :(得分:1)

使用以下代码:

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!');
            }

        }