public ActionResult EmailRobot()
        {
            SimpleAES           __aes  = new SimpleAES();
            var                 entity = _settingRepo.GetEntry(1);
            SettingEmailRobotVM vm     = new SettingEmailRobotVM();

            vm.InjectFrom(entity);
            vm.sys_email_robot_pw = __aes.DecryptString(entity.sys_email_robot_pw);
            return(View(vm));
        }