如何自定义/更改通知邮件的标题徽标(laravel)

时间:2019-04-15 21:15:30

标签: laravel laravel-mail

我不知道在下面(平方)的header logo示例中可以找到哪里

enter image description here

我的内容代码:

public function toMail($notifiable)
{
    return (new MailMessage) 
        ->line('The introduction to the notification.'.$user->name)
        ->line('Hey Now hey now')
        ->action('Notification Action', route('register.select'))
        ->line('Thank you for using our application!');
}


email.blade.php中进行编辑:

@component('mail::message')
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# @lang('Whoops!')
@else
# @lang('Hello!')
@endif
@endif

{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}

@endforeach

... and so on, and so forth


我想自定义logo header,但我找不到确切的位置。先生,需要您的帮助。

1 个答案:

答案 0 :(得分:0)

您只需要自定义邮件模板。

运行此命令:

php artisan vendor:publish --tag=laravel-notifications

之后,您将在resources/views/vendor/notifications中找到模板。


如果您要自定义模板中使用的邮件组件:

php artisan vendor:publish --tag=laravel-mail

您将在resources/views/vendor/mail中找到组件。您想要的是message.blade.phpheader.blade.php