Esempio n. 1
0
        private void btn_send_Click(object sender, EventArgs e)
        {
            string email = input_email.Text;

            if (InputValidator.VlidateEmail(email))
            {
                client.PasswordRecovery(email);
            }
            else
            {
                OnInvalidEmail();
            }
        }