drixs6o9 / sendinblue-mailer
Symfony Sendinblue Mailer Bridge
Installs: 27 548
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bridge
Requires
- php: ^7.2.9
- symfony/mailer: ^4.4|^5.0
Requires (Dev)
- symfony/http-client: ^4.4|^5.0
- symfony/test-pack: *
This package is auto-updated.
Last update: 2020-09-24 14:35:07 UTC
README
This package is abandoned and no longer maintained. I suggests using the symfony/sendinblue-mailer package instead.
Provides Sendinblue integration for Symfony Mailer.
Installation
Open a command console inyour project directory and execute the following command to download the latest stable version of this bundle:
$ composer require drixs6o9/sendinblue-mailer
Then, enable the bundle by adding the following line in the config/bundle.php
file of your project:
<?php // config/bundle.php return [ // ... Drixs6o9\SendinblueMailerBundle\SendinblueMailerBundle::class => ['all' => true], ];
Finally, add your Sendinblue credentials into your .env.local
file of your project following the sending method wanted :
SMTP:
Your MAILER_DSN can be configured as SMTP with sendinblue or sendinblue+smtp key, or be configured as STMPS with sendinblue+smtps key.
Exemple:
###> drixs6o9/sendinblue-mailer ### SENDINBLUE_USERNAME=username SENDINBLUE_PASSWORD=password MAILER_DSN=sendinblue+smtps://$SENDINBLUE_USERNAME:$SENDINBLUE_PASSWORD@default ###< drixs6o9/sendinblue-mailer ###
HTTP API:
You can use HTTP API transport by configuring your DSN as this:
###> drixs6o9/sendinblue-mailer ### SENDINBLUE_API_KEY=your-api-key MAILER_DSN=sendinblue+api://$SENDINBLUE_API_KEY@default ###< drixs6o9/sendinblue-mailer ###
With HTTP API, you can use custom headers.
$params = ['param1' => 'foo', 'param2' => 'bar']; $json = json_encode(['"custom_header_1' => 'custom_value_1']); $email = new Email(); $email ->getHeaders() ->add(new MetadataHeader('custom', $json)) ->add(new TagHeader('TagInHeaders1')) ->add(new TagHeader('TagInHeaders2')) ->addTextHeader('sender.ip', '1.2.3.4') ->addTextHeader('templateId', 1) ->addParameterizedHeader('params', 'params', $params) ->addTextHeader('foo', 'bar') ;
This example allow you to set :
- templateId
- params
- tags
- headers
- sender.ip
- X-Mailin-Custom
For more informations, you can refer to Sendinblue API documentation.