Releases: BinarCode/laravel-mailator
Releases · BinarCode/laravel-mailator
3.3.1
09 Jun 06:59
Compare
Sorry, something went wrong.
No results found
Added
manual alias for the never constraint
3.3.0
08 Jun 15:50
Compare
Sorry, something went wrong.
No results found
Added
Added never constraint on MailatorScheduler so you can send the mail manually:
3.2.1
08 Jun 12:40
Compare
Sorry, something went wrong.
No results found
Added
execute(now: true) will send the action right away.
3.2.0
08 Jun 11:49
Compare
Sorry, something went wrong.
No results found
Added
Added execute method to scheduler.
3.1.0
08 Jun 10:44
Compare
Sorry, something went wrong.
No results found
Added
Added ->tag method for schedulers
Fixed the morph target so it will consider custom morphs.
3.0.0
07 Jun 16:47
Compare
Sorry, something went wrong.
No results found
Drop
Added
You can link the scheduler with any entity like this:
MailatorSchedule::init ('Invoice reminder. ' )
->mailable (new InvoiceReminderMailable ())
->days (1 )
->target ($ invoice )
->save ();
and then in the Invoice model you can get all emails related to it:
// app/Models/Invoice.php
public function schedulers ()
{
return $ this ->morphMany (Binarcode \LaravelMailator \Models \MailatorSchedule::class, 'targetable ' );
}
. ..
2.0.0
09 Mar 12:25
Compare
Sorry, something went wrong.
No results found
Added
The scheduler part was improved by changing the signature for the before and after
Ability to add custom event in the Scheduler definition
Added built in constraints for the once, daily, weekly, before and after.
1.3.0
05 Jan 06:26
Compare
Sorry, something went wrong.
No results found
1.2.2
31 Oct 14:56
Compare
Sorry, something went wrong.
No results found
1.2.1
31 Oct 14:54
Compare
Sorry, something went wrong.
No results found
Fixed
Relationship with config class.