mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 21:02:55 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Console\Commands;
 | |
| 
 | |
| use DB;
 | |
| use DateTime;
 | |
| use Illuminate\Console\Command;
 | |
| use Symfony\Component\Console\Input\InputOption;
 | |
| use Symfony\Component\Console\Input\InputArgument;
 | |
| use App\Models\Account;
 | |
| use App\Ninja\Mailers\ContactMailer as Mailer;
 | |
| use App\Ninja\Repositories\accountRepository;
 | |
| use App\Ninja\Repositories\InvoiceRepository;
 | |
| 
 | |
| class SendReminders extends Command
 | |
| {
 | |
|     protected $name = 'ninja:send-reminders';
 | |
|     protected $description = 'Send reminder emails';
 | |
|     protected $mailer;
 | |
|     protected $invoiceRepo;
 | |
|     protected $accountRepo;
 | |
| 
 | |
|     public function __construct(Mailer $mailer, InvoiceRepository $invoiceRepo, AccountRepository $accountRepo)
 | |
|     {
 | |
|         parent::__construct();
 | |
| 
 | |
|         $this->mailer = $mailer;
 | |
|         $this->invoiceRepo = $invoiceRepo;
 | |
|         $this->accountRepo = $accountRepo;
 | |
|     }
 | |
| 
 | |
|     public function fire()
 | |
|     {
 | |
|         $this->info(date('Y-m-d').' Running SendReminders...');
 | |
|         $today = new DateTime();
 | |
| 
 | |
|         $accounts = $this->accountRepo->findWithReminders();
 | |
|         $this->info(count($accounts).' accounts found');
 | |
| 
 | |
|         foreach ($accounts as $account) {
 | |
|             if (!$account->isPro()) {
 | |
|                 continue;
 | |
|             }
 | |
| 
 | |
|             $invoices = $this->invoiceRepo->findNeedingReminding($account);
 | |
|             $this->info($account->name . ': ' . count($invoices).' invoices found');
 | |
| 
 | |
|             foreach ($invoices as $invoice) {
 | |
|                 if ($reminder = $account->getInvoiceReminder($invoice)) {
 | |
|                     $this->info('Send to ' . $invoice->id);
 | |
|                     $this->mailer->sendInvoice($invoice, $reminder);
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         $this->info('Done');
 | |
|     }
 | |
| 
 | |
|     protected function getArguments()
 | |
|     {
 | |
|         return array(
 | |
|             //array('example', InputArgument::REQUIRED, 'An example argument.'),
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     protected function getOptions()
 | |
|     {
 | |
|         return array(
 | |
|             //array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null),
 | |
|         );
 | |
|     }
 | |
| }
 |