PHPackages                             areeb/email-service - 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. areeb/email-service

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

areeb/email-service
===================

Laravel package for email service

1.0.0(2y ago)06.0kMITPHP ^8.0|^8.1|^8.2

Since Dec 25Compare

[ Source](https://github.com/AreebTechnology/laravel-email-service)[ Packagist](https://packagist.org/packages/areeb/email-service)[ RSS](/packages/areeb-email-service/feed)WikiDiscussions Synced today

READMEChangelog (1)Dependencies (10)Versions (2)Used By (0)

Areeb mail service
==================

[](#areeb-mail-service)

This package adds state support to models.

To give you a feel about how this package can be used, let's look at a quick example.

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

[](#installation)

You can install the package via composer:

```
composer require areeb/email-service
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Areeb\EmailService\EmailServiceServiceProvider" --tag="email-service-config"
```

```
use Areeb\EmailService\Contracts\EmailReceiverAble;
use Areeb\EmailService\Traits\HasEmailReceiver;

class User extends Model implements EmailReceiverAble
{
    use HasEmailReceiver;

}
```

```
