Interface IEmailSender


  • public interface IEmailSender
    E-mail Sender API. Used by webAppOS login servlet to validate e-mail addresses. Can also be used by other webAppOS apps and services.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean sendEmail​(java.lang.String toEmail, java.lang.String subject, java.lang.String body)
      Sends an e-mail.
    • Method Detail

      • sendEmail

        boolean sendEmail​(java.lang.String toEmail,
                          java.lang.String subject,
                          java.lang.String body)
        Sends an e-mail.
        Parameters:
        toEmail - the e-mail address in the "To:" field
        subject - the subject
        body - text to send
        Returns:
        whether the operation succeeded