Files
firefly-iii/app/Mail/UndoEmailChangeMail.php

74 lines
2.0 KiB
PHP
Raw Normal View History

<?php
2017-10-21 08:40:00 +02:00
/**
* UndoEmailChangeMail.php
* Copyright (c) 2017 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
2017-12-17 14:44:05 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-10-21 08:40:00 +02:00
*/
2017-11-25 15:20:53 +01:00
declare(strict_types=1);
namespace FireflyIII\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
2017-11-25 15:20:53 +01:00
/**
* Class UndoEmailChangeMail
2019-08-17 10:47:29 +02:00
*
2019-07-31 16:53:09 +02:00
* @codeCoverageIgnore
2017-11-25 15:20:53 +01:00
*/
class UndoEmailChangeMail extends Mailable
{
use Queueable, SerializesModels;
2017-12-22 18:32:43 +01:00
/** @var string IP address of user */
public $ipAddress;
2017-11-25 15:20:53 +01:00
/** @var string New email address */
public $newEmail;
2017-11-25 15:20:53 +01:00
/** @var string Old email address */
public $oldEmail;
2017-11-25 15:20:53 +01:00
/** @var string URI to undo */
public $uri;
/**
* UndoEmailChangeMail constructor.
*
* @param string $newEmail
* @param string $oldEmail
* @param string $uri
* @param string $ipAddress
*/
public function __construct(string $newEmail, string $oldEmail, string $uri, string $ipAddress)
{
$this->newEmail = $newEmail;
$this->oldEmail = $oldEmail;
$this->uri = $uri;
$this->ipAddress = $ipAddress;
}
/**
* Build the message.
*
* @return $this
*/
2018-07-22 16:35:46 +02:00
public function build(): self
{
return $this->view('emails.undo-email-change-html')->text('emails.undo-email-change-text')
2018-05-26 13:55:11 +02:00
->subject('Your Firefly III email address has changed');
}
}