It looks like when I try to send an email with both text and html views along with an attachment I only get the text view. Interestingly, the order of the values in the $views array affects the result.
For example:
$views = [
'emails_html',
'emails_text',
];
Mail::send($views, $data, function ($message) {
...
If I switch to using the standard Laravel mail it sends correctly.
Thanks for the really useful library!
It looks like when I try to send an email with both text and html views along with an attachment I only get the text view. Interestingly, the order of the values in the $views array affects the result.
For example:
If I switch to using the standard Laravel mail it sends correctly.
Thanks for the really useful library!