coolify/app/Notifications/Channels/SendsEmail.php

9 lines
121 B
PHP
Raw Normal View History

2023-06-01 12:15:33 +02:00
<?php
namespace App\Notifications\Channels;
interface SendsEmail
{
2023-07-28 10:55:26 +02:00
public function getRecepients($notification);
2023-08-11 20:48:52 +02:00
}