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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-elastic-email

Laravel Elastic Email

Donate Packagist Downloads GitHub CodeFactor Grade

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

PHP Build Version
Package Version
Requires php Version ^7.1|^8.0
laravel/framework Version ^6.0|^7.0|^8.0|^9.0|^10.0
guzzlehttp/guzzle Version ^6.3|^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package seinoxygen/laravel-elastic-email contains the following files

Collapse All

config

  elasticemail.php

database

   migrations

    create_elastic_email_hits_table.php.stub

routes

  web.php

src

   Providers

    EventServiceProvider.php

   Models

    ElasticEmailHit.php
    ElasticEmailOutbound.php

   Listeners

    OnEmailSent.php
    OnWebhookCall.php

   Http

     Controllers

   Facades

    ElasticEmail.php

   Exception

    ApiException.php

   Events

    WebhookCallReceived.php

   Console

    DeleteOld.php

   Actions

    Survey.php
    Segment.php
    SMS.php
    Log.php
    Export.php
    Email.php
    Domain.php
    EEList.php
    Contact.php
    Channel.php
    Campaign.php
    Attachment.php
    ApiClient.php
    Account.php
    Template.php

   routes

    web.php
  ElasticTransport.php
  ElasticApi.php
  MailServiceProvider.php
  ApiServiceProvider.php
  TransportManager.php
.gitignore
LICENSE
README.md
composer.json