senemoglu/laraloop

Sendloop wrapper for Laravel 5
1,335 1
Install
composer require senemoglu/laraloop
Latest Version:1.0.1
PHP:>=5.2.0
License:GNU GPL v3
Last Updated:Jun 15, 2016
Links: GitHub  ·  Packagist
Maintainer: blueskan

Laraloop - Sendloop Wrapper For Laravel 5

Laraloop is a simple wrapper for Sendloop & Sendloop MTA API services, this package coming with 2 facades.

You can use Sendloop libraries in your controllers or services like Laraloop::methodName() or LaraloopMTA::methodName()

###For installation you just follow these simple steps:

First install package:

php composer require senemoglu/laraloop

Second publish vendor configurations via Artisan CLI:

php artisan vendor:publish

After this step, config/laraloop.php file will be created, and you can set your API_KEY etc.

Then add service provider into your app.php configuration file:

Senemoglu\Laraloop\LaraloopServiceProvider::class

Finally add facades for easy access to Sendloop Methods (optionally, but strongly recommended):

'Laraloop' => Senemoglu\Laraloop\Facades\Laraloop::class,
'LaraloopMTA' => Senemoglu\Laraloop\Facades\LaraloopMTA::class

You can look Sendloop Documentations for details about API.

###Simple Example For Mta:

$message = new \Sendloop\MTA\Message();
$message->setFrom("Batıkan Senemoğlu", "me@batikansenemoglu.com");
$message->setSubject("My sweet subject");
$message->setHTMLContent("My sweet content too");

$transactionId = LaraloopMTA::send('target@foobarbaz.com', $message);

Related Packages

nikapps/ortc-laravel

An API wrapper for ORTC (Real-Time framework from realtime.co) based on Laravel...

143 8
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,305 162
lasserafn/laravel-economic

Economic REST wrapper for Laravel

20,022 11
redeman/imgur-laravel

Laravel Package for Imgur API. Provides easy access to the adyg/php-imgur-api-cl...

2,639 9
waschick/salesforceiq

SalesforceIQ (RelateIQ) API v2 client for Laravel & standalone projects. Forked...

3,606 0