File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## 3.0.1 - 2018-03-18
8
+ ### Changed
9
+ - Updated README.md
10
+ - Deprecated ` email:retry ` , please use ` email:resend `
11
+
7
12
## 3.0.0 - 2017-12-22
8
13
### Added
9
14
- Support for a custom sender per e-mail.
Original file line number Diff line number Diff line change @@ -164,13 +164,13 @@ Email::compose()
164
164
##### Resend all failed e-mails
165
165
166
166
``` bash
167
- php artisan email:retry
167
+ php artisan email:resend
168
168
```
169
169
170
170
##### Resend a specific failed e-mail
171
171
172
172
``` bash
173
- php artisan email:retry 1
173
+ php artisan email:resend 1
174
174
```
175
175
176
176
#### Encryption (Optional)
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ function an_email_cannot_be_reset_if_the_max_attempt_count_has_not_been_reached(
25
25
26
26
$ this ->assertEquals (1 , DB ::table ('emails ' )->count ());
27
27
28
- $ this ->artisan ('email:retry ' );
28
+ $ this ->artisan ('email:resend ' );
29
29
30
30
$ this ->assertEquals (1 , DB ::table ('emails ' )->count ());
31
31
You can’t perform that action at this time.
0 commit comments