adrema/app/Letter/MailRecipient.php

16 lines
239 B
PHP
Raw Normal View History

2022-11-07 16:18:11 +01:00
<?php
namespace App\Letter;
class MailRecipient
{
public string $name;
public string $email;
public function __construct(string $email, string $name)
{
$this->email = $email;
$this->name = $name;
}
}