stampie/stampie-bundle

This bundle provides integration for Stampie Email Library

Installs: 220 141

Dependents: 0

Suggesters: 0

Security: 0

Stars: 26

Watchers: 4

Forks: 5

Open Issues: 2

Type:symfony-bundle

v2.1.1 2022-03-30 13:36 UTC

This package is auto-updated.

Last update: 2024-02-29 02:53:08 UTC


README

CI

Integrates Stampie with Symfony.

$ composer require stampie/stampie-bundle

Usage

Add Stampie\StampieBundle\StampieBundle() to your AppKernel.php in the registerBundles method.

Add the configuration to config.yml as follows

stampie:
    mailer: postmark # [send_grid, postmark, mailgun, mandrill, mailjet, spark_post] are supported
    server_token: POSTMARK_API_TEST # Replace with your ServerToken for your Service

The HttpClient used by the bundle is configurable. By default, it uses the service httplug.client, which is the name of the default HTTP client when using HttplugBundle. Using this bundle is optional. You can provide your own service integrating HTTPlug:

stampie:
    http_client: my_http_client

StampieExtra

This bundles allows you to use StampieExtra easily: add the extra library in your project. The integration is activated automatically to wrap the mailer in the extra mailer dispatching events. An integration with the profiler is also provided.

If you want to enable the ImpersonateListener to send all emails to the same address, provide a non-empty delivery address:

stampie:
    extra:
        delivery_address: dev@example.com