php Laravel自定义降价邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel自定义降价邮件相关的知识,希望对你有一定的参考价值。

@component('mail::layout')
    {{-- Header --}}
    @slot('header')
        @component('mail::header', ['url' => config('app.url')])
            <!-- header here -->
        @endcomponent
    @endslot

    {{-- Body --}}
    <!-- Body here -->

    {{-- Subcopy --}}
    @slot('subcopy')
        @component('mail::subcopy')
            <!-- subcopy here -->
        @endcomponent
    @endslot


    {{-- Footer --}}
    @slot('footer')
        @component('mail::footer')
            <!-- footer here -->
        @endcomponent
    @endslot
@endcomponent

以上是关于php Laravel自定义降价邮件的主要内容,如果未能解决你的问题,请参考以下文章

如何在邮件组件中包含 Laravel 刀片降价?

发送后显示带有降价的 Laravel 通知(MailMessage)

使用带有降价的嵌套@components的Laravel Mail问题

在 Laravel 5.4 中自定义忘记密码的电子邮件

使用SwiftMessage从回复电子邮件中获取Laravel中的自定义标头

如何使用 laravel 发送自定义电子邮件通知?