Releases: BinarCode/laravel-mailator
Releases · BinarCode/laravel-mailator
6.0.2
6.0.1
6.0.0
5.2.1
5.2.0
5.1.0
5.0.0
4.1.2
Fixed
load only missing logs
4.1.1
4.1.0
Added
- Allow before constraint to setup hours:
Scheduler::init('Invoice reminder.')
->recipients($mail = '[email protected]')
->mailable(
(new InvoiceReminderMailable())->to('[email protected]')
)
->hours(1)
->before(now()->addHours(3));
The code above will send the email InvoiceReminderMailable
to [email protected]
1 hour before now + 3 hours. So basically the email will be sent in 1 hour.