snipe-it/app/Models/Recipients/AlertRecipient.php
Wes Hulette 16e56646b8 Fixed #5965: Allow multiple alert email addresses (#6233)
* Fixed #5965: Allow multiple alert email addresses

* Style changes based on PR feedback.
2018-09-26 14:07:41 -07:00

12 lines
180 B
PHP

<?php
namespace App\Models\Recipients;
class AlertRecipient extends Recipient
{
public function __construct(string $email)
{
$this->email = trim($email);
}
}