Skip to content

Releases: BinarCode/laravel-mailator

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 = 'zoo@bar.com')
  ->mailable(
      (new InvoiceReminderMailable())->to('foo@bar.com')
  )
  ->hours(1)
  ->before(now()->addHours(3));

The code above will send the email InvoiceReminderMailable to zoo@bar.com 1 hour before now + 3 hours. So basically the email will be sent in 1 hour.

4.0.0

10 Feb 09:41
7934ab2
Compare
Choose a tag to compare

Added

  • PHPStan
  • Clean up
  • Drop support for Laravel 8

3.11.1

09 Feb 14:35
Compare
Choose a tag to compare
Merge branch '3.x' of github.com:BinarCode/laravel-mailator into 3.x

3.11.0

09 Feb 14:18
Compare
Choose a tag to compare

Added

  • Support for Laravel 9