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

68 lines
1.8 KiB
PHP
Raw Normal View History

2022-10-01 19:06:55 +02:00
<?php
2022-10-16 19:29:53 +02:00
2022-10-01 19:06:55 +02:00
/*
* InvitationMail.php
* Copyright (c) 2022 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2022-10-16 19:29:53 +02:00
declare(strict_types=1);
2022-10-01 19:06:55 +02:00
namespace FireflyIII\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class InvitationMail extends Mailable
{
2022-10-30 14:24:28 +01:00
use Queueable;
use SerializesModels;
2022-10-01 19:06:55 +02:00
public string $admin;
public string $host;
2022-12-29 19:42:26 +01:00
public string $invitee;
public string $url;
2022-10-01 19:06:55 +02:00
/**
* OAuthTokenCreatedMail constructor.
*
2023-06-21 12:34:58 +02:00
* @param string $invitee
* @param string $admin
* @param string $url
2022-10-01 19:06:55 +02:00
*/
public function __construct(string $invitee, string $admin, string $url)
{
$this->invitee = $invitee;
2022-12-29 19:42:26 +01:00
$this->admin = $admin;
$this->url = $url;
$this->host = parse_url($url, PHP_URL_HOST);
2022-10-01 19:06:55 +02:00
}
/**
* Build the message.
*
* @return $this
*/
public function build(): self
{
return $this
->markdown('emails.invitation')
2022-12-29 19:42:26 +01:00
->subject((string)trans('email.invite_user_subject'));
2022-10-01 19:06:55 +02:00
}
}