Interface Emailer


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

    Modifier and Type
    Method
    Description
    void
    send(String subject, String body, String... recipients)
    This method sends an notification to the listed recipients in text format
    void
    sendAsHtml(String subject, String body, String... recipients)
    This method sends an notification to the listed recipients in HTML format
  • Method Details

    • 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