rosavox/lib/alveolata/email/abstract/interface.php

23 lines
205 B
PHP
Raw Normal View History

2025-05-23 07:33:29 +00:00
<?php
namespace alveolata\email;
/**
*/
interface interface_email
{
/**
* shall send an E-Mail
*/
function send(
struct_credentials $credentials,
struct_data $data
) : void
;
}
?>