ActiveCampaign / laravel-postmark-provider

A Postmark adapter for Laravel 5+
30 stars 9 forks source link

Problem sending text and html emails with attachment #2

Open hillelcoren opened 9 years ago

hillelcoren commented 9 years ago

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!