summaryrefslogtreecommitdiff
path: root/src/lib/SenderPrivate.class.php
blob: e6f280748fe3cbdb39d94477cbba7b3533f02aac (plain)
1
2
3
4
5
6
7
<?php

require_once('Plugin.class.php');

abstract class SenderPrivate extends Plugin {
	public abstract function send($to, $id, $subject, $body);
}