]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/interfaces/mailer/class_DeliverableMail.php
User class renamed to Member and it's interface
[shipsimu.git] / inc / classes / interfaces / mailer / class_DeliverableMail.php
index e9f9e2b494bba8c705721d104c3e221da18165db..7e042044fb4419dc4cc03f90490686aca1a9931d 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface DeliverableMail extends FrameworkInterface {
+       /**
+        * Adds a user class to the recipient list for current template
+        *
+        * @param       $userInstance   An instance of a user class
+        * @return      void
+        */
+       function addRecipientByUserInstance (ManageableMember $userInstance);
+
+       /**
+        * Use subject line provided by the (XML) template otherwise a subject line must be set
+        *
+        * @return      void
+        */
+       function useSubjectFromTemplate ();
+
+       /**
+        * Deliver email to the recipient(s)
+        *
+        * @return      void
+        */
+       function deliverEmail ();
+
+       /**
+        * Send notification to the admin
+        *
+        * @return      void
+        */
+       function sendAdminNotification ();
 }
 
 //