mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
16e56646b8
* Fixed #5965: Allow multiple alert email addresses * Style changes based on PR feedback.
12 lines
180 B
PHP
12 lines
180 B
PHP
<?php
|
|
|
|
namespace App\Models\Recipients;
|
|
|
|
class AlertRecipient extends Recipient
|
|
{
|
|
public function __construct(string $email)
|
|
{
|
|
$this->email = trim($email);
|
|
}
|
|
}
|