You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
The MailMessage class has a very similar API to Mailable, except it's simpler to use (and thus, is sampled on the Notifications guide).
However, it's missing an important part of emails for deliverability: the text/plain part.
Sure, it can be generated using the Markdown parser, but it becomes something not easy to be done when you need to use custom templates.
Mailable solves that by having all three methods: view(), text() and markdown(), but the lack of MailMessage::text()troubles some users (me included).
The text was updated successfully, but these errors were encountered:
The MailMessage class has a very similar API to Mailable, except it's simpler to use (and thus, is sampled on the Notifications guide).
However, it's missing an important part of emails for deliverability: the text/plain part.
Sure, it can be generated using the Markdown parser, but it becomes something not easy to be done when you need to use custom templates.
Mailable solves that by having all three methods:
view()
,text()
andmarkdown()
, but the lack ofMailMessage::text()
troubles some users (me included).The text was updated successfully, but these errors were encountered: