Interface ISMTPConfiguration

  • All Known Implementing Classes:
    SMTPConfiguration

    public interface ISMTPConfiguration
    Provides the interface for an SMTP configuration.
    • Method Detail

      • useSSLSMTP

        boolean useSSLSMTP()
        Returns whether to use SSL for SMTP.
        Returns:
        true if SSL is used, false otherwise
      • getSMTPPort

        int getSMTPPort()
        Returns the port number for SMTP.
        Returns:
        the port number
      • getSMTPHost

        java.lang.String getSMTPHost()
        Returns the host name for SMTP.
        Returns:
        the host name
      • getUserName

        java.lang.String getUserName()
        Returns the username for SMTP authentication.
        Returns:
        the SMTP username
      • getUserPass

        java.lang.String getUserPass()
        Returns the password for SMTP authentication.
        Returns:
        the SMTP password
      • getFromAddress

        java.lang.String getFromAddress()
        Returns the From address for sending emails.
        Returns:
        the from address
      • getReplyToAddress

        java.lang.String getReplyToAddress()
        Returns the Reply-To address for sending emails.
        Returns:
        the address where replies should go
      • setReplyToAddress

        @Deprecated
        void setReplyToAddress​(java.lang.String replyToAddress)
        Deprecated.
        Sets the Reply-To address for SMTP to the specified address. Set to null if no Reply-To headers should be included in emails.
        Parameters:
        replyToAddress - the address to which email replies should go, or null if no such header should be included