PHPackages                             andremellow/laravel-comtele - 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. andremellow/laravel-comtele

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

andremellow/laravel-comtele
===========================

Laravel Notification Package to connect with Comtele

299[1 issues](https://github.com/andremellow/laravel-comtele/issues)PHP

Since Dec 17Pushed 4y ago2 watchersCompare

[ Source](https://github.com/andremellow/laravel-comtele)[ Packagist](https://packagist.org/packages/andremellow/laravel-comtele)[ RSS](/packages/andremellow-laravel-comtele/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Comtele
===============

[](#laravel-comtele)

Package to connect to comtele.com.br.

### Install the package using composer

[](#install-the-package-using-composer)

```
composer require andremellow/laravel-comtele
```

### You can export the configuration file

[](#you-can-export-the-configuration-file)

You should not need to export the vendor file, since you can overhide all configurations on the .env file. But just in case you need, just run the following command

```
php artisan vendor:publish --provider="Andremellow\Comtele\ComteleChannelServiceProvider"
```

### Add your `Auth Key` and `Default Sender` to your .env file

[](#add-your-auth-key-and-default-sender-to-your-env-file)

```
COMTELE_AUTH_KEY=xxxxxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxxxxx
COMTELE_SEND_SENDER="Default Sender here"
```

At this point, just follow Laravel Notification Documentation

Now add the Notifiable

### Create a Notification

[](#create-a-notification)

```
php artisan make:notification InvoicePaid
```

### Using The Notifiable Trait

[](#using-the-notifiable-trait)

Add Notification Trail to the User class

```
