public static string GetEmailPassword() { string password; using (StreamReader sr = new StreamReader(parentDirectory + "/Resources/EmailPassword.txt")) { password = sr.ReadLine(); } return(Encrypter.Decrypt(password)); }