https://github.com/bertoost/elasticemail-mailer
A Symfony Mailer implemtation for Elastic Email API
https://github.com/bertoost/elasticemail-mailer
Last synced: about 1 year ago
JSON representation
A Symfony Mailer implemtation for Elastic Email API
- Host: GitHub
- URL: https://github.com/bertoost/elasticemail-mailer
- Owner: bertoost
- License: mit
- Created: 2022-09-21T17:50:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-25T18:23:57.000Z (over 1 year ago)
- Last Synced: 2025-05-07T07:07:24.641Z (about 1 year ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Elastic Email Mailer for Symfony Mailer
Provides Elastic Email integration for Symfony Mailer.
## Installation
```bash
composer require bertoost/elasticemail-mailer
```
## Usage
Symfony Mailer DSN
```env
MAILER_DSN=elasticemail+api://$API_KEY@default
```
Initialize manually:
```php
use bertoost\Mailer\ElasticEmail\Transport\ElasticEmailApiTransport;
$transport = new ElasticEmailApiTransport('YOUR_API_KEY');
```