public ActionResult HandleMigrationPopup(string campaignCustomerUuid)
        {
            var model = new MigrationPopUpViewModel();

            if (ExpresslyPlugin.Install())
            {
                model.popUpHtml = ExpresslyProvider.build().GetPopupHtml(_expresslyApiContext, campaignCustomerUuid);
            }

            return PartialView("~/Views/Home/Partial/_MigrationPopup.cshtml", model);
        }
        public ActionResult ShowMigrationPopup()
        {
            var model = new MigrationPopUpViewModel();

            if (ExpresslyPlugin.Install())
            {
                model.popUpHtml = ExpresslyProvider.build().GetPopupHtml(_expresslyApiContext, "c03b4bff-d810-4ff9-918c-ce52d4645780");
            }

            return PartialView("~/Views/Home/Partial/_MigrationPopup.cshtml", model);
        }