Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

blomdahldaniel's avatar

Laravel -> Mandrill trouble "Invalid resource type: boolean"

Bah, i have trouble using mandrill. I get ´Invalid resource type: boolean´ I have the API-key set as 'secure' and the driver='mandrill'

I use the laravel docs example

Mail::send('emails.testing', ['key' => 'value'], function($message)
{
    $message->to('foo@example.com', 'John Smith')->subject('Welcome!');
});

my testing.blade.php contains only plain text.

Anyone know anything about this? i really need to solve this!

0 likes
1 reply
blomdahldaniel's avatar
Level 7

I finally figured it out. The problem was somehow Guzzle. So i removed the install of Guzzle and then I entered a newer version in my composer.js (~5.0), made composer install and that cracked the case.

1 like

Please or to participate in this conversation.