coolify/app/Notifications/Channels/SendsEmail.php

9 lines
115 B
PHP
Raw Permalink Normal View History

2023-06-01 10:15:33 +00:00
<?php
namespace App\Notifications\Channels;
interface SendsEmail
{
public function getRecipients(): array;
2023-08-11 18:48:52 +00:00
}