/*
         * Init execution report config;
         * For this report, only use config file input, dont bother with command line input.
         *
         * */
        public void initMail(EmailConfig config_)
        {
            initMailClient(config_);

            initSender(config_.getSender(), config_.getSenderName());
            initReceiver(config_.getReceivers());
        }