firefly-iii/app/Mail/ReportNewJournalsMail.php

80 lines
2.2 KiB
PHP
Raw Normal View History

2018-06-25 09:01:45 -05:00
<?php
/**
* ReportNewJournalsMail.php
* Copyright (c) 2018 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Collection;
/**
* Class ReportNewJournalsMail.
*
* Sends a list of newly created journals to the user.
2019-08-17 03:47:29 -05:00
*
2019-07-31 09:53:09 -05:00
* @codeCoverageIgnore
2018-06-25 09:01:45 -05:00
*/
class ReportNewJournalsMail extends Mailable
{
use Queueable, SerializesModels;
/** @var string Email address of the user */
public $email;
/** @var string IP address of user (if known) */
public $ipAddress;
/** @var Collection A collection of journals */
public $journals;
/**
* ConfirmEmailChangeMail constructor.
*
* @param string $email
* @param string $ipAddress
* @param Collection $journals
*/
public function __construct(string $email, string $ipAddress, Collection $journals)
{
$this->email = $email;
$this->ipAddress = $ipAddress;
$this->journals = $journals;
}
/**
* Build the message.
*
* @return $this
*/
public function build(): self
{
2018-07-22 09:35:46 -05:00
$subject = 1 === $this->journals->count()
? 'Firefly III has created a new transaction'
: sprintf(
'Firefly III has created new %d transactions', $this->journals->count()
);
2018-06-25 09:01:45 -05:00
return $this->view('emails.report-new-journals-html')->text('emails.report-new-journals-text')
->subject($subject);
2018-06-25 09:01:45 -05:00
}
}