laravel-mail/README.md

39 lines
552 B
Markdown
Raw Normal View History

# 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 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 17:21:16 +02:00
Finally publish the assets from your provider :
```bash
php artisan vendor:publish
```