16 lines
239 B
PHP
16 lines
239 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|