| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-27 17:06:15 +02:00
										 |  |  | use function Safe\parse_url; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-04 13:29:19 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Class InvitationMail | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-10-01 19:06:55 +02:00
										 |  |  | class InvitationMail extends Mailable | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-30 14:24:28 +01:00
										 |  |  |     use Queueable; | 
					
						
							|  |  |  |     use SerializesModels; | 
					
						
							| 
									
										
										
										
											2025-05-04 17:41:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-01 19:06:55 +02:00
										 |  |  |     public string $host; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * OAuthTokenCreatedMail constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2025-05-04 13:47:00 +02:00
										 |  |  |     public function __construct(public string $invitee, public string $admin, public string $url) | 
					
						
							| 
									
										
										
										
											2022-10-01 19:06:55 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2025-05-27 17:06:15 +02:00
										 |  |  |         $this->host = (string) parse_url($this->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') | 
					
						
							| 
									
										
										
										
											2024-12-22 08:43:12 +01:00
										 |  |  |             ->subject((string) trans('email.invite_user_subject')) | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  |         ; | 
					
						
							| 
									
										
										
										
											2022-10-01 19:06:55 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } |