2017 © Pedro Peláez
 

library mailgunserviceprovider

Mailgun Service Provider for Silex

image

achrafsoltani/mailgunserviceprovider

Mailgun Service Provider for Silex

  • Friday, April 1, 2016
  • by AchrafSoltani
  • Repository
  • 1 Watchers
  • 1 Stars
  • 2,279 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 6 Versions
  • 3 % Grown

The README.md

MailgunServiceProvider

A Simple wrapper for the mailgun API for the Silex Framework., (*1)

Latest Stable Version Total Downloads License, (*2)

Features

  • Easy setup.
  • All the Mailgun API features.

Requirements

  • PHP 5.3+
  • mailgun-php

Installation

$ composer require achrafsoltani/mailgunserviceprovider

Setup

``` {.php} require_once DIR.'/vendor/autoload.php';, (*3)

use Silex\Application; use AchrafSoltani\Provider\MailgunServiceProvider;, (*4)

$app = new Application();, (*5)

$app->register(new MailgunServiceProvider(), array( 'mailgun.api_key' => 'key-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'mailgun.domain' => 'domain.tld', ));, (*6)

// Usage, (*7)

$app->run();, (*8)

Usage
------------
* Example 1 : Sending an email

``` {.php}
$message = array(
    'from'    => 'Excited User <name@domain.tld>',
    'to'      => 'Baz <foo.bar@example.com>',
    'subject' => 'Greetings!',
    'text'    => 'Testing some Mailgun awesomness!'    
);

$app['mailgun']->sendMessage($message);
  • Example 2 : Creating a mailing list through the API

{.php} $app['mailgun']->post("lists", array( 'address' => 'LIST@domain.tld', 'description' => 'Mailgun Dev List' ));, (*9)

Full API documentation

Check how to use the full API capabilities at https://documentation.mailgun.com/user_manual.html, (*10)

The Versions

01/04 2016

dev-master

9999999-dev

Mailgun Service Provider for Silex

  Sources   Download

MIT

The Requires

 

by Achraf Soltani

01/04 2016

v1.0.5

1.0.5.0

Mailgun Service Provider for Silex

  Sources   Download

MIT

The Requires

 

by Achraf Soltani

06/01 2016

v1.0.4

1.0.4.0

Mailgun Service Provider for Silex

  Sources   Download

MIT

The Requires

 

by Achraf Soltani

20/05 2015

v1.0.3

1.0.3.0

Mailgun Service Provider for Silex

  Sources   Download

MIT

The Requires

 

by Achraf Soltani

20/05 2015

v1.0.2

1.0.2.0

Mailgun Service Provider for Silex

  Sources   Download

MIT

The Requires

 

by Achraf Soltani

20/05 2015

1.0.0

1.0.0.0

Mailgun Service Provider for Silex

  Sources   Download

MIT

The Requires

 

by Achraf Soltani