首页 > 解决方案 > 以纯文本形式获取降价电子邮件

问题描述

我正在使用 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

在此处输入图像描述

下面是我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

标签: markdownlumen

解决方案


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

尝试这样的事情:

@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

推荐阅读