private void ResendEmails()
        {
            UserAccountClient  uac   = new UserAccountClient();
            List <UserAccount> users = new List <UserAccount>(uac.GetAllNotConfirmEmails());

            foreach (UserAccount user in users)
            {
                SendVerificationEmail(user.RowKey, user.FirstName + " " + user.LastName);
            }
        }