bunun tek mail adresli olanını yaptım
gmail üzerinden ve çalışıyor..
toplu olanınıda sayenizde yapacam artık..
text dosyasındaki mailler arasında bir karakter yada alt satıra aktarma gibi bir kod varmı yoksa space mi sadece?
bide hocam
private void emailTextBox_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (emailTextBox.Text.IndexOf("@") < 0)
            { errorProvider1.SetError(emailTextBox, "Email adresini yanlış girdiniz..."); }
            else
                errorProvider1.SetError(emailTextBox, "");
            if (emailTextBox.Text.IndexOf("ç") >= 0 || emailTextBox.Text.IndexOf("ş") >= 0 || emailTextBox.Text.IndexOf("ğ") >= 0 || emailTextBox.Text.IndexOf("ö") >= 0 || emailTextBox.Text.IndexOf("ü") >= 0 || emailTextBox.Text.IndexOf("İ") >= 0 || emailTextBox.Text.IndexOf("ı") >= 0 || emailTextBox.Text.IndexOf("Ç") >= 0 || emailTextBox.Text.IndexOf("Ş") >= 0 || emailTextBox.Text.IndexOf("Ğ") >= 0 || emailTextBox.Text.IndexOf("Ö") >= 0 || emailTextBox.Text.IndexOf("Ü") >= 0)
            { errorProvider1.SetError(emailTextBox, "Email adresini yanlış girdiniz.Türkçe karakter email adreslerinde kullanılamaz"); }
        }
kodunu bu programa uyarlayabilirmiyiz?