Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.32 KB

File metadata and controls

55 lines (42 loc) · 1.32 KB

Sendinblue Bridge

Provides Sendinblue integration for Symfony Mailer.

Configuration example:

# SMTP
MAILER_DSN=sendinblue+smtp://USERNAME:PASSWORD@default

# API
MAILER_DSN=sendinblue+api://KEY@default

where:

  • KEY is your Sendinblue API Key

With 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.

Resources