Releases: mailjet/MailjetSwiftMailer
Releases · mailjet/MailjetSwiftMailer
Support SwiftMailer 6.0 and PHP > 7.0
[FIX] Variables json_encode in SM headers
Pull Request #6
[FIX] Incorrect method when user defined headers are set
[FIX] Exclude null properties form the payload
Pull request #2
Feature: Added support for Send API v3.1
We now support Send API v3.1 !
If you want to use Send API v3.1 you only need to select the proper version => v3.1 .
$clientOptions = ['url' => "api.mailjet.com", 'version' => 'v3.1', 'call' => true];
$transport = new MailjetTransport($dispatchEvent, $apiKey, $apiSecret, $clientOptions);
Feature: inject your own Mailjet\Client
You can now inject your own Mailjet\Client:
$myMailjetClient = new MyMailjetClient(); //extends from \Mailjet\Client
$transport->setExternalMailjetClient($myMailjetClient);
Migrate to official repository
- Transfer to official Mailjet repository
composer require composer require mailjet/mailjet-swiftmailer
v1.0.0
Features
- Complete integration of Mailjet APIV3
- support sendBulk: https://dev.mailjet.com/guides/#sending-in-bulk
- exhaustive documentation
Todo
- more unit tests
- some integration tests
- handle inlineAttachments
BETA2
- Send Message with SwiftMailer throught Mailjet API v3
- Handle custom Mailjet Headers
- Unit Tests
- Tests in Symfony Environment