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

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

            _gtmService.RaiseMobileUpdatePageEvent(contactPreferencesVm, LoggedInUserId);
            await _webActivityService.LogMobilePhoneUpdatePageVist(contactPreferencesVm.LowellReference, LoggedInUserId);

            return(View(contactPreferencesVm));
        }