mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
39 lines
812 B
PHP
39 lines
812 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class RequestedNewPassword extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
/** @var string */
|
|
public $ipAddress;
|
|
/** @var string */
|
|
public $url;
|
|
|
|
/**
|
|
* RequestedNewPassword constructor.
|
|
*
|
|
* @param string $url
|
|
* @param string $ipAddress
|
|
*/
|
|
public function __construct(string $url, string $ipAddress)
|
|
{
|
|
$this->url = $url;
|
|
$this->ipAddress = $ipAddress;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
return $this->view('emails.password-html')->text('emails.password-text')->subject('Your password reset request');
|
|
}
|
|
}
|