Class EmailModule


  • public class EmailModule
    extends java.lang.Object
    This class can be used to send email. All methods behave in a similar way, there are just multiple methods for your convenience.
    • Constructor Summary

      Constructors 
      Constructor Description
      EmailModule()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void mail​(ISMTPConfiguration configuration, java.lang.String msg, java.lang.String subject, java.lang.String to)
      Sends an email to to with subject subject and message msg.
      static void mail​(ISMTPConfiguration configuration, java.lang.String msg, java.lang.String subject, java.lang.String to, IContext context, IMendixObject attachment)
      Sends an email to to with subject subject and message msg with attachment attachment using settings in configuration.
      static void mail​(ISMTPConfiguration configuration, java.lang.String htmlmsg, java.lang.String plainmsg, java.lang.String subject, java.lang.String to)
      Sends an email to to with subject subject and message as html, the shown message will be htmlmsg.
      static void mail​(ISMTPConfiguration configuration, java.lang.String htmlmsg, java.lang.String plainmsg, java.lang.String subject, java.lang.String to, IContext context, IMendixObject attachment)
      Sends an email to to with subject subject and HTML message htmlmsg with attachment attachment using settings in configuration.
      static void mail​(ISMTPConfiguration configuration, java.lang.String htmlmsg, java.lang.String plainmsg, java.lang.String subject, java.util.List<java.lang.String> to, java.util.List<java.lang.String> cc, java.util.List<java.lang.String> bcc, IContext context, java.util.List<IMendixObject> attachments)
      Sends an email to to, cc and bcc with subject subject and HTML message htmlmsg with attachments attachments using settings in configuration.
      static void mail​(ISMTPConfiguration configuration, java.lang.String msg, java.lang.String subject, java.util.List<java.lang.String> to, java.util.List<java.lang.String> cc, java.util.List<java.lang.String> bcc, IContext context, java.util.List<IMendixObject> attachments)
      Sends an email to to, cc and bcc with subject subject and message msg with attachments attachments using settings in configuration.
      • Methods inherited from class java.lang.Object

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

      • EmailModule

        public EmailModule()
    • Method Detail

      • mail

        public static void mail​(ISMTPConfiguration configuration,
                                java.lang.String msg,
                                java.lang.String subject,
                                java.lang.String to)
                         throws CoreException
        Sends an email to to with subject subject and message msg.
        Parameters:
        configuration - the SMTP configuration that contains all information to send the email
        msg - the message to send
        subject - the subject of the email
        to - the recipients of the email message
        Throws:
        CoreException - if sending the email message by mail failed
      • mail

        public static void mail​(ISMTPConfiguration configuration,
                                java.lang.String msg,
                                java.lang.String subject,
                                java.util.List<java.lang.String> to,
                                java.util.List<java.lang.String> cc,
                                java.util.List<java.lang.String> bcc,
                                IContext context,
                                java.util.List<IMendixObject> attachments)
                         throws CoreException
        Sends an email to to, cc and bcc with subject subject and message msg with attachments attachments using settings in configuration.
        Parameters:
        configuration - the SMTP configuration that contains all information to send the email
        msg - the message to send
        subject - the subject of the email
        to - the recipients of the email message
        cc - the CC recipients
        bcc - the BCC recipients
        context - the context to use to check if the current user has the rights to access the attachments
        attachments - the attachments to send along with the email
        Throws:
        CoreException - if sending the email message by mail failed
      • mail

        public static void mail​(ISMTPConfiguration configuration,
                                java.lang.String htmlmsg,
                                java.lang.String plainmsg,
                                java.lang.String subject,
                                java.util.List<java.lang.String> to,
                                java.util.List<java.lang.String> cc,
                                java.util.List<java.lang.String> bcc,
                                IContext context,
                                java.util.List<IMendixObject> attachments)
                         throws CoreException
        Sends an email to to, cc and bcc with subject subject and HTML message htmlmsg with attachments attachments using settings in configuration.
        Parameters:
        configuration - the SMTP configuration that contains all information to send the email
        htmlmsg - the message body as html text this is what most of the recipients will see
        plainmsg - the message in plain text (this will be shown if the recipient doesn't accept html messages)
        subject - the subject of the email
        to - the recipients of the email message
        cc - the CC recipients
        bcc - the BCC recipients
        context - the context to use to check if the current user has the rights to access the attachments
        attachments - the attachments to send along with the email
        Throws:
        CoreException - if sending the email message by mail failed
      • mail

        public static void mail​(ISMTPConfiguration configuration,
                                java.lang.String htmlmsg,
                                java.lang.String plainmsg,
                                java.lang.String subject,
                                java.lang.String to)
                         throws CoreException
        Sends an email to to with subject subject and message as html, the shown message will be htmlmsg. If the receipts don't support html messages the plainmsg will be shown.
        Parameters:
        configuration - the SMTP configuration that contains all information to send the email
        htmlmsg - the message body as html text this is what most of the recipients will see
        plainmsg - the message in plain text (this will be shown if the recipient doesn't accept html messages)
        subject - the subject of the email
        to - the recipients of the email message
        Throws:
        CoreException - if sending the email message by mail failed
      • mail

        public static void mail​(ISMTPConfiguration configuration,
                                java.lang.String msg,
                                java.lang.String subject,
                                java.lang.String to,
                                IContext context,
                                IMendixObject attachment)
                         throws CoreException
        Sends an email to to with subject subject and message msg with attachment attachment using settings in configuration.
        Parameters:
        configuration - the SMTP configuration that contains all information to send the email
        msg - the message body to send
        subject - the subject of the email
        to - the recipients of the email message
        context - the context to use to check if the current user has the rights to access the attachments
        attachment - the attachment to send along with the email
        Throws:
        CoreException - if sending the email message by mail failed
      • mail

        public static void mail​(ISMTPConfiguration configuration,
                                java.lang.String htmlmsg,
                                java.lang.String plainmsg,
                                java.lang.String subject,
                                java.lang.String to,
                                IContext context,
                                IMendixObject attachment)
                         throws CoreException
        Sends an email to to with subject subject and HTML message htmlmsg with attachment attachment using settings in configuration.
        Parameters:
        configuration - the SMTP configuration that contains all information to send the email
        htmlmsg - the message body as html text this is what most of the recipients will see
        plainmsg - the message in plain text (this will be shown if the recipient doesn't accept html messages)
        subject - the subject of the email
        to - the recipients of the email message
        context - the context to use to check if the current user has the rights to access the attachments
        attachment - the attachment to send along with the email
        Throws:
        CoreException - if sending the email message by mail failed