1 <?php
2 /* --------------------------------------------------------------
3 MailerAdapterInterface.inc.php 2015-02-05 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12 /**
13 * Interface MailerAdapterInterface
14 *
15 * @category System
16 * @package Email
17 * @subpackage Interfaces
18 */
19 interface MailerAdapterInterface
20 {
21 /**
22 * Sends a single email.
23 *
24 * @param EmailInterface $email Contains email information.
25 */
26 public function send(EmailInterface $email);
27 }