PHPackages                             compenda/sendwithus - 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. [Framework](/categories/framework)
4. /
5. compenda/sendwithus

AbandonedArchivedLibrary[Framework](/categories/framework)

compenda/sendwithus
===================

SendWithUs Is A SendWithUs Bridge For Laravel 5

0.1.1(10y ago)0471[1 issues](https://github.com/pietdevries94/Laravel-SendWithUs/issues)MITPHPPHP &gt;=5.5.9

Since Apr 4Pushed 9y ago1 watchersCompare

[ Source](https://github.com/pietdevries94/Laravel-SendWithUs)[ Packagist](https://packagist.org/packages/compenda/sendwithus)[ RSS](/packages/compenda-sendwithus/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (6)Versions (3)Used By (0)

Laravel SendWithUs
==================

[](#laravel-sendwithus)

A package to use [sendwithus\_php](https://github.com/sendwithus/sendwithus_php) with [Laravel 5](https://laravel.com)

This repository is derived from [Laravel-Dropbox by Graham Campbell](https://github.com/GrahamCampbell/Laravel-Dropbox)

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

[](#installation)

Either [PHP](https://php.net/) 5.5+ or [HHVM](http://hhvm.com/) 3.6+ are required.

To get the latest version of Laravel SendWithUs, simply require the project using [Composer](https://getcomposer.org/):

```
$ composer require compenda/sendwithus

```

Instead, you may of course manually update your require block and run composer update if you so choose:

```
{
    "require": {
        "compenda/sendwithus": "^0.1.0"
    }
}
```

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

- `'Compenda\SendWithUs\SendWithUsServiceProvider'`

You can register the SendWithUs facade in the `aliases` key of your `config/app.php` file if you like.

- `'SendWithUs' => 'Compenda\SendWithUs\Facades\SendWithUs'`

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

[](#configuration)

Laravel Sendwithus requires connection configuration.

To get started, you'll need to publish all vendor assets:

```
$ php artisan vendor:publish
```

This will create a `config/sendwithus.php` file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.

There are two config options:

##### Default Connection Name

[](#default-connection-name)

This option (`'default'`) is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is `'main'`.

##### SendWithUs Connections

[](#sendwithus-connections)

This option (`'connections'`) is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like.

Usage
-----

[](#usage)

##### SendWithUsManager

[](#sendwithusmanager)

This is the class of most interest. It is bound to the ioc container as `'sendwithus'` and can be accessed using the `Facades\SendWithUs` facade. This class implements the `ManagerInterface` by extending `AbstractManager`. The interface and abstract class are both part of my [Laravel Manager](https://github.com/GrahamCampbell/Laravel-Manager) package, so you may want to go and checkout the docs for how to use the manager class over at [that repo](https://github.com/GrahamCampbell/Laravel-Manager#usage). Note that the connection class returned will always be an instance of `\sendwithus\API`.

##### Facades\\SendWithUs

[](#facadessendwithus)

This facade will dynamically pass static method calls to the `'sendwithus'` object in the ioc container which by default is the `SendWithUsManager` class.

##### SendWithUsServiceProvider

[](#sendwithusserviceprovider)

This class contains no public methods of interest. This class should be added to the providers array in `config/app.php`. This class will setup ioc bindings.

##### Real Examples

[](#real-examples)

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is `main`. After you enter your authentication details in the config file, it will just work:

```
use Compenda\SendWithUs\Facades\SendWithUs;
// you can alias this in config/app.php if you like

$emails = SendWithUs::emails();
// we're done here - how easy was that, it just works!

$segments = SendWithUs::get_segments();
// this example is simple, and there are far more methods available
```

The sendwithus manager will behave like it is a `\sendwithus\API` class. If you want to call specific connections, you can do with the `connection` method:

```
use Compenda\SendWithUs\Facades\SendWithUs;

// the alternative connection is the other example provided in the default config
// let's create a copy ref so we can copy a file to the main connection
$emails = SendWithUs::connection('alternative')->emails();
```

With that in mind, note that:

```
use Compenda\SendWithUs\Facades\SendWithUs;

// writing this:
$emails = SendWithUs::connection('main')->emails();

// is identical to writing this:
$emails = SendWithUs::emails();

// and is also identical to writing this:
$emails = SendWithUs::connection('main')->emails();

// this is because the main connection is configured to be the default
SendWithUs::getDefaultConnection(); // this will return main

// we can change the default connection
SendWithUs::setDefaultConnection('alternative'); // the default is now alternative
```

If you prefer to use dependency injection over facades, then you can easily inject the manager like so:

```
use Compenda\SendWithUs\SendWithUsManager;
use Illuminate\Support\Facades\App; // you probably have this aliased already

class Foo
{
    protected $sendwithus;

    public function __construct(SendWithUsManager $sendwithus)
    {
        $this->sendwithus = $sendwithus;
    }

    public function bar()
    {
        return $this->sendwithus->emails();
    }
}

App::make('Foo')->bar();
```

For more information on how to use the `\sendwithus\API` class we are calling behind the scenes here, check out the repository at [https://github.com/sendwithus/sendwithus\_php](https://github.com/sendwithus/sendwithus_php), and the manager class at .

##### Further Information

[](#further-information)

There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package.

License
-------

[](#license)

Laravel-SendWithUs is licensed under [The MIT License (MIT)](LICENSE).

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 85.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

3686d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/673cd9ff2fee0bb7abde0a0193d5af324ca4cd01b9336829ec549aaae0a63c1c?d=identicon)[pietdevries94](/maintainers/pietdevries94)

---

Top Contributors

[![PietCompenda](https://avatars.githubusercontent.com/u/128584733?v=4)](https://github.com/PietCompenda "PietCompenda (6 commits)")[![SwissWeb](https://avatars.githubusercontent.com/u/8927460?v=4)](https://github.com/SwissWeb "SwissWeb (1 commits)")

---

Tags

apiframeworklaravelfilesBridgedropboxSendWithUssendwithus bridgeLaravel SendWithUsCompendaPiet de Vries

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/compenda-sendwithus/health.svg)

```
[![Health](https://phpackages.com/badges/compenda-sendwithus/health.svg)](https://phpackages.com/packages/compenda-sendwithus)
```

###  Alternatives

[rebing/graphql-laravel

Laravel wrapper for PHP GraphQL

2.2k7.1M26](/packages/rebing-graphql-laravel)[graham-campbell/markdown

Markdown Is A CommonMark Wrapper For Laravel

1.3k7.1M63](/packages/graham-campbell-markdown)[graham-campbell/github

GitHub Is A GitHub Bridge For Laravel

6411.7M19](/packages/graham-campbell-github)[graham-campbell/manager

Manager Provides Some Manager Functionality For Laravel

39221.1M134](/packages/graham-campbell-manager)[graham-campbell/digitalocean

DigitalOcean Is A DigitalOcean Bridge For Laravel

509343.1k2](/packages/graham-campbell-digitalocean)[laravel-zero/framework

The Laravel Zero Framework.

3371.4M368](/packages/laravel-zero-framework)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
