以纯文本形式获取降价电子邮件

Ruc*_*chi 2 markdown lumen

我正在使用 laravel Mailable 和 Markdown 发送电子邮件,但它发送了一封如下所示的电子邮件,没有得到我做错了什么。

Hello cus1
    Please click the button below to verify your email address.

    <table class="action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">
    <tr>
        <td align="center">
            <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
                <tr>
                    <td align="center">
                        <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                            <tr>
                                <td>
                                    <a href="https://google.com" class="button button-primary"
                                       target="_blank">Verify Email Address</a>
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
        </td>
    </tr>

    If you did not create an account, no further action is required.

    Thanks,<br>
    PMS
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

下面是我welcome_email.blade.php用来生成电子邮件模板的

@component('mail::message')
    # Hello {{ $user->name }},

    Please click the button below to verify your email address.

    @component('mail::button', ['url' => $verificationUrl])
        Verify Email Address
    @endcomponent

    If you did not create an account, no further action is required.

    Thanks,<br>
    {{ config('app.name') }}
@endcomponent
Run Code Online (Sandbox Code Playgroud)

Dan*_* R. 6

您应该尝试删除刀片文件中的缩进。有时降价会因此变得疯狂。

尝试这样的事情:

@component('mail::message')
# Hello {{ $user->name }},

Please click the button below to verify your email address.

@component('mail::button', ['url' => $verificationUrl])
Verify Email Address
@endcomponent

If you did not create an account, no further action is required.

Thanks,<br>
{{ config('app.name') }}
@endcomponent
Run Code Online (Sandbox Code Playgroud)