Skip to content

3.3.3

Choose a tag to compare

@binaryk binaryk released this 09 Jun 07:47
· 86 commits to 3.x since this release

Added

  • Spread operator for recipients, so we can send strings or array:
 $scheduler->recipients([$mail2 = '[email protected]']); 
 $scheduler->recipients($mail3 = '[email protected]');

 //dump($scheduler->recipients) => [email protected], [email protected]
``