PHPackages                             laravel-notification-channels/vwo-engage - 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. laravel-notification-channels/vwo-engage

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

laravel-notification-channels/vwo-engage
========================================

VWO Engage Notifications driver

v1.2.0(5y ago)0153MITPHPPHP ^7.2CI failing

Since Oct 1Pushed 5y ago3 watchersCompare

[ Source](https://github.com/laravel-notification-channels/vwo-engage)[ Packagist](https://packagist.org/packages/laravel-notification-channels/vwo-engage)[ Docs](https://github.com/laravel-notification-channels/vwo-engage)[ RSS](/packages/laravel-notification-channels-vwo-engage/feed)WikiDiscussions master Synced 3d ago

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

VWO Engage (previously PushCrew) Push Notifications Channel for Laravel
=======================================================================

[](#vwo-engage-previously-pushcrew-push-notifications-channel-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b182cf482b823a6d56aa6ff4126b1429cfe70be7d4685012ab1635df16941434/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f76776f2d656e676167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/vwo-engage)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/3e22d368134d736f66eebb072fb4829f33caf951eee030e80a8be80b15e8e539/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f76776f2d656e676167652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/vwo-engage)[![StyleCI](https://camo.githubusercontent.com/98c28dc4bd78b15f4b2009bc489888e1fcd1cdee331b57f00b176c1960d927d1/68747470733a2f2f7374796c6563692e696f2f7265706f732f37303134303835392f736869656c64)](https://styleci.io/repos/70140859)[![Quality Score](https://camo.githubusercontent.com/b80dddccf5763ed10dcdb8f73aef3be8f0de99a498e50183e447d8d2e7a0abbc/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f76776f2d656e676167652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/vwo-engage)[![Code Coverage](https://camo.githubusercontent.com/188d71d9f4c31de34b8ea4cb9b08745276f16fac49b8428c0cbe39bb3c1389b7/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f76776f2d656e676167652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/vwo-engage/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/95e3b342a7c4037c31435dd2209ce89337e25f0aeb59a8f30b8e14131613e1e3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f76776f2d656e676167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/vwo-engage)

This package makes it easy to send notifications using [VWO Engage](https://vwo.com/engage) with Laravel.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the VWO Engage service](#setting-up-the-vwo-engage-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require laravel-notification-channels/vwo-engage
```

### Setting up the VWO Engage service

[](#setting-up-the-vwo-engage-service)

Add your VWO Engage API Token to your `config/services.php`:

```
// config/services.php
'vwo-engage' => [
    'token' => env('VWO_ENGAGE_API_TOKEN'),
]
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use Illuminate\Notifications\Notification;
use NotificationChannels\Engage\EngageChannel;
use NotificationChannels\Engage\EngageMessage;

class AccountApproved extends Notification
{
    public function via($notifiable)
    {
        return [EngageChannel::class];
    }

    public function toEngage($notifiable)
    {
        return EngageMessage::create()
                    ->subject('Your account was approved!')
                    ->body('Click here to see details.')
                    ->icon('https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Laravel.svg/231px-Laravel.svg.png')
                    ->url('https://vwo.com/engage');
    }
}
```

In order to let your Notification know which VWO Engage subscriber(s) you are targeting, add the `routeNotificationForEngage` method to your Notifiable model.

```
public function routeNotificationForEngage()
{
    return 'VWO_ENAGE_SUBSCRIBER_ID';
}
```

You can either return a single subscriber-id, or if you want to notify multiple subscriber IDs just return an array containing all IDs.

To determine the Subscriber ID read this [FAQ](https://help.vwo.com/hc/en-us/articles/360007743913-How-can-I-determine-the-Subscriber-ID-of-a-visitor-to-my-site-).

### Available Message methods

[](#available-message-methods)

- `subject('')`: Accepts a string value for the title.
- `body('')`: Accepts a string value for the notification body.
- `icon('')`: Accepts an url for the icon.
- `url('')`: Accepts an url for the notification click event.

For more information [take a look here](http://api.pushcrew.com/docs/send-to-a-list-of-subscribers).

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ php vendor/bin/phpunit
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Davide Bellini](https://github.com/billmn)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 85.2% 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 ~171 days

Total

3

Last Release

2122d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20937037?v=4)[Laravel Notification Channels](/maintainers/laravel-notification-channels)[@laravel-notification-channels](https://github.com/laravel-notification-channels)

---

Top Contributors

[![billmn](https://avatars.githubusercontent.com/u/779534?v=4)](https://github.com/billmn "billmn (23 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (2 commits)")[![mpociot](https://avatars.githubusercontent.com/u/804684?v=4)](https://github.com/mpociot "mpociot (1 commits)")[![obrunsmann](https://avatars.githubusercontent.com/u/763812?v=4)](https://github.com/obrunsmann "obrunsmann (1 commits)")

---

Tags

laravellaravel-packagenotificationspushcrewvwo-engage

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/laravel-notification-channels-vwo-engage/health.svg)

```
[![Health](https://phpackages.com/badges/laravel-notification-channels-vwo-engage/health.svg)](https://phpackages.com/packages/laravel-notification-channels-vwo-engage)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M3.0k](/packages/craftcms-cms)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M157](/packages/spatie-laravel-health)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.8M45](/packages/laravel-notification-channels-telegram)[illuminate/http

The Illuminate Http package.

11937.9M6.7k](/packages/illuminate-http)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4079.9M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/expo

Expo Notifications Channel for Laravel

67628.6k1](/packages/laravel-notification-channels-expo)

PHPackages © 2026

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