TIDE/backend/app/Email/Emailer.php

8 lines
123 B
PHP

<?php
namespace App\Email;
interface Emailer
{
public function send(string $from, string $to, string $body): void;
}