PHPackages                             ouredenlife/laravel-sendchamp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. ouredenlife/laravel-sendchamp

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

ouredenlife/laravel-sendchamp
=============================

Laravel package for sendchamp api

1.0.4(2y ago)013MITPHPPHP ^7.2|^8.0|^8.1

Since Aug 4Pushed 2y agoCompare

[ Source](https://github.com/edenlife/laravel-sendchamp)[ Packagist](https://packagist.org/packages/ouredenlife/laravel-sendchamp)[ RSS](/packages/ouredenlife-laravel-sendchamp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (5)Versions (13)Used By (0)

laravel-sendchamp
=================

[](#laravel-sendchamp)

> A Laravel Package for sendchamp api

 [![Latest Stable Version](https://camo.githubusercontent.com/d944b116eb832ea88c7a3cc9db395dd201d9f3894509a7277a3a25a399e9067a/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f73656e646368616d702f76)](https://packagist.org/packages/mujhtech/sendchamp) [![Latest Unstable Version](https://camo.githubusercontent.com/65c737c5e1c66d14a46c24b5068df82ade6ed1222d874353b35da52f596159f6/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f73656e646368616d702f762f756e737461626c65)](https://packagist.org/packages/mujhtech/sendchamp) [![Build Status](https://camo.githubusercontent.com/8c1a0fc7f0ce7f16cc19404bd3a5c5fb7d7351b55569b4efe27bb0ff57c90a95/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4d756a68746563682f6c61726176656c2d73656e646368616d702f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Mujhtech/laravel-sendchamp/build-status/master) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/a643e1a3a3f0f56c2b2406ec6f7e8f92a83c63bfa8ca071836a7f211124161a6/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4d756a68746563682f6c61726176656c2d73656e646368616d702f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Mujhtech/laravel-sendchamp/?branch=master) [![Code Coverage](https://camo.githubusercontent.com/902e8f2803e3b366beae6c53f621b9d875303cc07e1cabf47839ccc1c46d2603/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4d756a68746563682f6c61726176656c2d73656e646368616d702f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Mujhtech/laravel-sendchamp/?branch=master) [![Total Downloads](https://camo.githubusercontent.com/6bdce56aaa2f6eab5b6ba9dd8632b98a7427e3992cf88f0a731af444cd895545/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f73656e646368616d702f646f776e6c6f616473)](https://packagist.org/packages/mujhtech/sendchamp) [![License](https://camo.githubusercontent.com/f7160e45cd9f80c6a5d055fd3c7b757055d28f13a93b6b67dd2c0621202f7a59/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f73656e646368616d702f6c6963656e7365)](https://packagist.org/packages/mujhtech/sendchamp)

Installation
------------

[](#installation)

To get the latest version of Sendchamp, simply require it

```
composer require mujhtech/sendchamp
```

Or add the following line to the require block of your `composer.json` file.

```
"mujhtech/sendchamp": "1.0.*"

```

Once Laravel Sendchamp is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

```
'providers' => [
 ...
 Mujhtech\SendChamp\SendChampServiceProvider::class,
 ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/mujhtech/laravel-sendchamp#configuration)

- `SendChamp\SendChamp\SendChampServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
 ...
 'SendChamp' => Mujhtech\SendChamp\Facades\SendChamp::class,
 ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Mujhtech\SendChamp\SendChampServiceProvider"
```

A configuration-file named `sendchamp.php` with some sensible defaults will be placed in your `config` directory:

```
