Download the PHP package seinoxygen/laravel-elastic-email without Composer
On this page you can find all versions of the php package seinoxygen/laravel-elastic-email. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download seinoxygen/laravel-elastic-email
More information about seinoxygen/laravel-elastic-email
Files in seinoxygen/laravel-elastic-email
Package laravel-elastic-email
Short Description A Laravel wrapper for Elastic Email
License MIT
Informations about the package laravel-elastic-email
Laravel Elastic Email
A Laravel wrapper for sending emails via Elastic Email service and API capabilities that allows you to check the status of every email sent. It provides a basic email log table to store all outbound emails where you can link to a model.
Installation
Add Laravel Elastic Email as a dependency using the composer CLI:
Mail Service Usage
This package works exactly like Laravel's native mailers. Refer to Laravel's Mail documentation.
Add the following to your config/services.php and add the correct values to your .env file
Add the following to your config/mail.php
Next, in config/app.php, comment out Laravel's default MailServiceProvider. If using < Laravel 5.5, add the MailServiceProvider and ApiServiceProvider to the providers array
Next, in config/app.php, add the ElasticEmail to the aliases array
Finally switch your default mail provider to elastic email in your .env file by setting MAIL_DRIVER=elastic_email
Outbound Email Tracking
To keep track of all emails sent by the driver you'll need to publish the migrations and the configuration files:
By default all outgoing emails will be stored with the Elastic Email message_id and transaction_id.
Check config/elasticemail.php for more options.
Linking Outgoing Emails To Your Models
In your mailable be sure to set the with array the following way.
Sorry if it looks ugly. I haven't found a better way to do this...yet.
Capturing Webhook Events
You will need to set a webhook in Elastic Email service pointing to yourappurl.com/webhook/elasticemail
There is an event being fired when data is sent to the webhook url.
Api Usage
For documentation visit https://api.elasticemail.com/public/help
Credits
This package is based on ZanySoft
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-elastic-email with dependencies
laravel/framework Version ^6.0|^7.0|^8.0|^9.0|^10.0
guzzlehttp/guzzle Version ^6.3|^7.0