23 lines
205 B
PHP
23 lines
205 B
PHP
|
<?php
|
||
|
|
||
|
namespace alveolata\email;
|
||
|
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
interface interface_email
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* shall send an E-Mail
|
||
|
*/
|
||
|
function send(
|
||
|
struct_credentials $credentials,
|
||
|
struct_data $data
|
||
|
) : void
|
||
|
;
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|