Interface Emailer


  • public interface Emailer
    Author:
    Andrew Woods Date: 3/11/11
    • Method Detail

      • send

        void send​(String subject,
                  String body,
                  String... recipients)
        This method sends an notification to the listed recipients in text format
        Parameters:
        subject - of notification
        body - of notification
        recipients - of notification
      • sendAsHtml

        void sendAsHtml​(String subject,
                        String body,
                        String... recipients)
        This method sends an notification to the listed recipients in HTML format
        Parameters:
        subject - of notification
        body - of notification
        recipients - of notification