File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 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.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## 3.0.1 - 2018-03-18
8+ ### Changed
9+ - Updated README.md
10+ - Deprecated ` email:retry ` , please use ` email:resend `
11+
712## 3.0.0 - 2017-12-22
813### Added
914- Support for a custom sender per e-mail.
Original file line number Diff line number Diff line change @@ -164,13 +164,13 @@ Email::compose()
164164##### Resend all failed e-mails
165165
166166``` bash
167- php artisan email:retry
167+ php artisan email:resend
168168```
169169
170170##### Resend a specific failed e-mail
171171
172172``` bash
173- php artisan email:retry 1
173+ php artisan email:resend 1
174174```
175175
176176#### 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(
2525
2626 $ this ->assertEquals (1 , DB ::table ('emails ' )->count ());
2727
28- $ this ->artisan ('email:retry ' );
28+ $ this ->artisan ('email:resend ' );
2929
3030 $ this ->assertEquals (1 , DB ::table ('emails ' )->count ());
3131
You can’t perform that action at this time.
0 commit comments