mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 13:59:29 +00:00
13 lines
158 B
PHP
13 lines
158 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Mail queue component
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
class MailQueue {
|
||
|
|
||
|
}
|
||
|
|
||
|
//Register component
|
||
|
Components::register("mail", new MailQueue());
|