private void SaveNotificationTemplate()
 {
     //
     try
     {
         //
         RoutineResult result = StorehouseHelper.SetServiceActivatedNotification(EmailEditor.From, EmailEditor.CC, EmailEditor.Subject,
                                                                                 EmailEditor.HtmlBody, EmailEditor.PlainTextBody);
         //
         if (!result.Succeed)
         {
             ShowResultMessage(Keys.ModuleName, result.ResultCode, result.Message);
             //
             return;
         }
         //
         RedirectToBrowsePage();
     }
     catch (Exception ex)
     {
         ShowErrorMessage("SAVE_NOTIFICATION_TEMPLATE", ex);
     }
 }