Skip to content
/ email Public

Email package to easily add email providers to an app

License

Notifications You must be signed in to change notification settings

Erdiko/email

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Erdiko Email Package

Important: This package is currently on development, please don't use it until have a beta or stable version.

Introduction

Erdiko Email is a package to handle in an easy and elastic way the email transports.

Official Documentation

Documentation for Erdiko Email Package can be found on the Erdiko website.

Installation

We recommend installing Erdiko Email Package with Composer. At the commandline simply run:

composer require erdiko/email

Transports

Current Transports Available:

  • PHPMailer: EmailTransportPHPMailer
  • Mailgun: EmailTransportMailgun - API and SMTP

Dependencies

This package depends of Erdiko\Core

Configuration

File Path

[site_root]/app/config/default/email.php

File format

[
    "transport" => "Mailgun",
    "config" => [
        "smtp" => true,
        "apikey" => "API_KEY",
        "user" => "USER",
        "pass" => 'PASS',
        "host" => "HOST",
        "domain" => "DOMAIN",
        "port" => "587",
        "secure" => "tls",
        "auth" => true
    ]
]

Available Methods

You will find several methods that will satisfy your requirements for handling email data.

  • subject
  • to
  • from
  • plain
  • html
  • template
  • send

Basic Usage

$email = $container->email;

$email->subject('Subject Test');
$email->from('[email protected]', 'From Name');
$email->to('[email protected]', 'To Name');
$email->plain('plain text email');
$email->html('<h1>Test email</h1><p>Test Body</p>');
$email->send();

Tests

On development

Credits

  • Mauricio Pineda
  • John Arroyo
  • Leo Daidone

All Contributors

  • If you want to help, please do, we'd love more brainpower! Fork, commit your enhancements and do a pull request. If you want to get to even more involved please contact us!

Sponsors

Arroyo Labs

License

Erdiko is open-sourced software licensed under the MIT license

About

Email package to easily add email providers to an app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages