Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdalmolin authored Apr 14, 2022
1 parent af0fd64 commit 587c273
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Laravel Mandrill Driver

This package re-enables Mandrill driver functionality using the Mail facade in Laravel 6+ and Lumen.
This package re-enables Mandrill driver functionality using the Mail facade in Laravel 6+.

To install the package in your project, you need to require the package via Composer:

Expand Down Expand Up @@ -29,8 +29,19 @@ You can also add custom Mandrill headers to each email sent, for this you need t
```
all the valid options in Mandrill docs at: https://mailchimp.com/developer/transactional/docs/smtp-integration/#customize-messages-with-smtp-headers

## Versions

| Laravel Version | Mandrill package version |
|------------------|----------------------------------|
| 9+ | 4.x |
| 6, 7, 8 | 3.x |

## Laravel 7+ Installation

```bash
composer require therobfonz/laravel-mandrill-driver:^3.0
```

Add the Mandrill mailer to your `config\mail.php`:

```php
Expand Down Expand Up @@ -59,4 +70,4 @@ Add the following line to `bootstrap/app.php`

```php
$app->register(LaravelMandrill\MandrillServiceProvider::class);
```
```

0 comments on commit 587c273

Please sign in to comment.