Skip to content

Releases: BinarCode/laravel-mailator

6.0.2

02 Dec 18:31
Compare
Choose a tag to compare

Fixed

  • Refactor ReplaceModelAttributes to handle array values efficiently

6.0.1

03 Jul 07:25
96795fe
Compare
Choose a tag to compare

Fixed

6.0.0

03 Jul 07:19
83d589b
Compare
Choose a tag to compare

Added

  • Support for PHP8.2 and Laravel 11.

5.2.1

22 Feb 10:09
494c837
Compare
Choose a tag to compare

Fixed

  • Prevent issue: $instance must not be accessed before initialization #2578

5.2.0

30 Jun 13:35
1e4909c
Compare
Choose a tag to compare

Added

  • Add hours precision when email is dispatched #2576

5.1.0

18 Apr 15:52
Compare
Choose a tag to compare

Added

5.0.0

17 Feb 13:15
c2c6b1d
Compare
Choose a tag to compare

Added

  • Support for Laravel 10, and drop support for Laravel 9.

4.1.2

17 Feb 12:50
a8861b2
Compare
Choose a tag to compare

Fixed

load only missing logs

4.1.1

17 Feb 11:34
Compare
Choose a tag to compare

Fixed

  • eager loading logs when running the schedule:run command

4.1.0

27 Jun 19:06
e165af9
Compare
Choose a tag to compare

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.