summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail/PostmanMailEngine.php
blob: 046178bcfb0a96d6717be7de1f70e2d8620a7231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

if (! interface_exists ( "PostmanMailEngine" )) {

	interface PostmanMailEngine {
		public function getTranscript();
		public function send(PostmanMessage $message);
	}

}