Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SendEmails.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Sales\Cron;
7 
15 {
22 
26  public function __construct(\Magento\Sales\Model\EmailSenderHandler $emailSenderHandler)
27  {
28  $this->emailSenderHandler = $emailSenderHandler;
29  }
30 
44  public function execute()
45  {
46  $this->emailSenderHandler->sendEmails();
47  }
48 }
__construct(\Magento\Sales\Model\EmailSenderHandler $emailSenderHandler)
Definition: SendEmails.php:26