Well, I managed to get it to work as I suggested in my question (by writing my own ServiceProviderand TransportManagerso that I can provide the driver). This is what I did for anyone who could understand this:
config / app.php . Replace Laravel with MailServiceProvidermy own
'providers' => [
App\MyMailer\MailServiceProvider::class,
app / MyMailer / MailServiceProvider.php . Create a service provider that extends Laravel MailServiceProviderand overrides the methodregisterSwiftTransport()
<?php
namespace App\MyMailer;
class MailServiceProvider extends \Illuminate\Mail\MailServiceProvider
{
public function registerSwiftTransport()
{
$this->app['swift.transport'] = $this->app->share(function ($app) {
return new TransportManager($app);
});
}
}
app / MyMailer / TransportManager.php . Add a method createMailjetDriverthat makes my driver MailjetTransportavailable to Laravel Mailer
<?php
namespace App\MyMailer;
use App\MyMailer\Transport\MailjetTransport;
class TransportManager extends \Illuminate\Mail\TransportManager
{
protected function createMailjetDriver()
{
$config = $this->app['config']->get('services.mailjet', []);
return new MailjetTransport(
$this->getHttpClient($config),
$config['api_key'],
$config['secret_key']
);
}
}
/MyMailer/Transport/MailjetTransport.php - , Mailjet.
, Mailjet. Mailjet API .
<?php
namespace App\MyMailer\Transport;
use GuzzleHttp\ClientInterface;
use Illuminate\Mail\Transport\Transport;
use Swift_Mime_Message;
class MailjetTransport extends Transport
{
protected $client;
protected $apiKey;
protected $secretKey;
protected $endPoint = 'https://api.mailjet.com/v3/send';
public function __construct(ClientInterface $client, $apiKey, $secretKey)
{
$this->client = $client;
$this->apiKey = $apiKey;
$this->secretKey = $secretKey;
}
public function send(Swift_Mime_Message $message, &$failedRecipients = null)
{
$this->beforeSendPerformed($message);
$payload = [
'header' => ['Content-Type', 'application/json'],
'auth' => [$this->apiKey, $this->secretKey],
'json' => []
];
$this->addFrom($message, $payload);
$this->addSubject($message, $payload);
$this->addContent($message, $payload);
$this->addRecipients($message, $payload);
return $this->client->post($this->endPoint, $payload);
}
protected function addFrom(Swift_Mime_Message $message, &$payload)
{
$from = $message->getFrom();
$fromAddress = key($from);
if ($fromAddress) {
$payload['json']['FromEmail'] = $fromAddress;
$fromName = $from[$fromAddress] ?: null;
if ($fromName) {
$payload['json']['FromName'] = $fromName;
}
}
}
protected function addSubject(Swift_Mime_Message $message, &$payload)
{
$subject = $message->getSubject();
if ($subject) {
$payload['json']['Subject'] = $subject;
}
}
protected function addContent(Swift_Mime_Message $message, &$payload)
{
$contentType = $message->getContentType();
$body = $message->getBody();
if (!in_array($contentType, ['text/html', 'text/plain'])) {
$contentType = strip_tags($body) != $body ? 'text/html' : 'text/plain';
}
$payload['json'][$contentType == 'text/html' ? 'Html-part' : 'Text-part'] = $message->getBody();
}
protected function addRecipients(Swift_Mime_Message $message, &$payload)
{
foreach (['To', 'Cc', 'Bcc'] as $field) {
$formatted = [];
$method = 'get' . $field;
$contacts = (array) $message->$method();
foreach ($contacts as $address => $display) {
$formatted[] = $display ? $display . " <$address>" : $address;
}
if (count($formatted) > 0) {
$payload['json'][$field] = implode(', ', $formatted);
}
}
}
}
.env :
MAIL_DRIVER=mailjet
.., Laravel ( ) :
\Mail::send('view', [], function($message) {
$message->to('me@domain.com');
$message->subject('Test');
});