2020-04-09 12:55:07 +02:00
|
|
|
# BMail
|
|
|
|
|
|
|
|
The BMail package allows you to send email templates on Laravel to the Bluescale API.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
In your composer.json, add :
|
|
|
|
|
|
|
|
```bash
|
2020-04-09 16:00:19 +02:00
|
|
|
"require": {
|
|
|
|
"bluescale/laravel-bmail": "dev-master"
|
2020-04-09 12:55:07 +02:00
|
|
|
}
|
2020-04-09 16:00:19 +02:00
|
|
|
````
|
|
|
|
|
|
|
|
and
|
|
|
|
|
|
|
|
```bash
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "git@git.bluesquare.io:bluescale/laravel-bmail.git"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-04-09 17:21:16 +02:00
|
|
|
Then update your package file :
|
2020-04-09 16:00:19 +02:00
|
|
|
|
|
|
|
```bash
|
2020-04-09 17:21:16 +02:00
|
|
|
composer update bluescale/laravel-mail
|
2020-04-09 12:55:07 +02:00
|
|
|
```
|
2020-04-09 17:21:16 +02:00
|
|
|
|
|
|
|
Finally publish the assets from your provider :
|
|
|
|
|
|
|
|
```bash
|
|
|
|
php artisan vendor:publish
|
|
|
|
```
|
|
|
|
|
|
|
|
|