You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
3
+
4
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+
## 3.0.0 - 2017-12-22
8
+
### Added
9
+
- Support for a custom sender per e-mail.
10
+
11
+
### Upgrade from 2.x to 3.x
12
+
13
+
3.0.0 added support for a custom sender per e-mail. To update please run the following command:
14
+
15
+
```bash
16
+
php artisan migrate
17
+
```
18
+
19
+
## 2.0.0 - 2017-12-14
20
+
### Added
21
+
- Support for multiple recipients, cc and bcc addresses.
22
+
- Support for mailables (*)
23
+
- Support for attachments
24
+
- New method `later`
25
+
26
+
*= Only works for Laravel versions 5.5 and up because 5.5 finally introduced a method to read the mailable body.
27
+
28
+
### Fixed
29
+
- Bug causing failed e-mails not to be resent
30
+
31
+
### Upgrade from 1.x to 2.x
32
+
Because 2.0.0 introduced support for attachments, the database needs to be updated. Simply run the following two commands after updating your dependencies and running composer update:
33
+
34
+
```bash
35
+
php artisan migrate
36
+
```
37
+
38
+
## 1.1.3 - 2017-12-07
39
+
### Fixed
40
+
- Created a small backwards compatibility fix for Laravel versions 5.4 and below.
41
+
42
+
## 1.1.2 - 2017-11-18
43
+
### Fixed
44
+
- Incorrect auto discovery namespace for Laravel 5.5
45
+
46
+
47
+
## 1.1.1 - 2017-08-02
48
+
### Changed
49
+
- Only dispatch `before.send` event during unit tests
0 commit comments