Class Email

  • Direct Known Subclasses:
    RowEmail, SheetEmail

    public abstract class Email
    extends java.lang.Object
    Represents an Email object.
    • Constructor Summary

      Constructors 
      Constructor Description
      Email()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Boolean getCcMe()
      Gets the carbon copy me flag.
      java.lang.String getMessage()
      Gets the message.
      java.util.List<Recipient> getSendTo()
      Gets the list of recipients to send to
      java.lang.String getSubject()
      Gets the subject.
      Email setCcMe​(java.lang.Boolean ccMe)
      Sets the carbon copy me flag.
      Email setMessage​(java.lang.String message)
      Sets the message.
      Email setSendTo​(java.util.List<Recipient> sendTo)
      Sets the list of recipients to send to
      Email setSubject​(java.lang.String subject)
      Sets the subject.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Email

        public Email()
    • Method Detail

      • getSendTo

        public java.util.List<Recipient> getSendTo()
        Gets the list of recipients to send to
        Returns:
        the list of recipients
      • setSendTo

        public Email setSendTo​(java.util.List<Recipient> sendTo)
        Sets the list of recipients to send to
        Parameters:
        sendTo - list of recipients
      • getSubject

        public java.lang.String getSubject()
        Gets the subject.
        Returns:
        the subject
      • setSubject

        public Email setSubject​(java.lang.String subject)
        Sets the subject.
        Parameters:
        subject - the new subject
      • getMessage

        public java.lang.String getMessage()
        Gets the message.
        Returns:
        the message
      • setMessage

        public Email setMessage​(java.lang.String message)
        Sets the message.
        Parameters:
        message - the new message
      • getCcMe

        public java.lang.Boolean getCcMe()
        Gets the carbon copy me flag.
        Returns:
        the cc me
      • setCcMe

        public Email setCcMe​(java.lang.Boolean ccMe)
        Sets the carbon copy me flag.
        Parameters:
        ccMe - the new cc me