Это мой шаблон электронной почты
@component('mail::message')
<img src="{{ URL::asset("https://mywebsite.com/openUpdate/$userId") }}" width="1" height="1" alt="">
# Hello {{$userName}},
----Email Body-----
@component('mail::button', ['url' => 'https://mywebsite.com/redirecting/' . $userId])
Click here to confirm your appointment
@endcomponent
{{ config('app.name') }}<br>
Click <a href="{{ URL::asset("https://mywebsite.com/unsubscribe/$userId") }}">here</a> to un-subscribe.
@endcomponent
Всякий раз, когда я отправляю это письмо на адрес Gmail, я получаю следующую ошибку о том, что мое письмо помечено как возможный спам
This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:
myemail@gmail.com
host 5817.smtp.antispamcloud.com [38.89.254.164]
SMTP error from remote mail server after end of data:
550 High probability of spam
Reporting-MTA: dns; nwpro2.fcomet.com
Action: failed
Final-Recipient: rfc822;myemail@gmail.com
Status: 5.0.0
Remote-MTA: dns; 5817.smtp.antispamcloud.com
Diagnostic-Code: smtp; 550 High probability of spam
Сбой не произойдет, даже если я урежу свою электронную почту до @component('mail::message')
в начале и @endcomponent
в конце.
Однако он принимает только простой текст.
Как я могу убедиться, что электронная почта доставлена правильно и не помечена как спам?