public async Task <IActionResult> ContactPreferences(ContactPreferencesVm contactPreferencesVm)
        {
            if (!_portalSetting.Features.EnableContactPreferences)
            {
                return(RedirectToAction("Index"));
            }

            Logger.LogInformation("Navigated to MyProfile/ContactPreferences.");

            _gtmService.RaiseContactPreferecesPageEvent(contactPreferencesVm, LoggedInUserId);
            await _webActivityService.LogContactPreferencesPageVist(contactPreferencesVm.LowellReference, LoggedInUserId);

            return(View(contactPreferencesVm));
        }