private void UyeMailGonderButon_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(SubeMailKonuTxtBox.Text) && !String.IsNullOrEmpty(SubeMailMesajTxtBox.Text))
     {
         E_Uye uye = new E_Uye();
         uye.Eposta = UyeMailLabel.Text.ToString();
         uye.Ad     = MesajlarGridView.CurrentRow.Cells["Ad"].Value.ToString();
         uye.Soyad  = MesajlarGridView.CurrentRow.Cells["Soyad"].Value.ToString();
         string konu   = SubeMailKonuTxtBox.Text.ToString();
         string mesaj  = SubeMailMesajTxtBox.Text.ToString();
         Mail   gonder = new Mail();
         bool   durum  = gonder.SubedenUyeye(uye, konu, mesaj);
         if (durum)
         {
             MessageBox.Show("Mail Gönderildi.", "Bilgilendirme", MessageBoxButtons.OK, MessageBoxIcon.Information);
             UyeMailLabel.Text = "-";
             SubeMailMesajTxtBox.Clear();
             SubeMailKonuTxtBox.Clear();
             UyeMailGroupBox.Enabled = false;
         }
     }
     else
     {
         MessageBox.Show("Lütfen boş alanları doldurunuz.", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
Example #2
0
 private void SubeMsjGndrButon_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(SubeMailKonuTxtBox.Text) && !String.IsNullOrEmpty(SubeMailMsjTxtBox.Text))
     {
         Mail gonder = new Mail();
         bool durum  = gonder.MailGonder(SubeMsj.Eposta, SubeMsj.Sehir, SubeMsj.Ilce, SubeMsj.Ad, SubeMailKonuTxtBox.Text, SubeMailMsjTxtBox.Text);
         if (durum)
         {
             MessageBox.Show("Mail Gönderildi.", "Bilgilendirme", MessageBoxButtons.OK, MessageBoxIcon.Information);
             SubeMsjLabel.Text = "-";
             SubeMailMsjTxtBox.Clear();
             SubeMailKonuTxtBox.Clear();
             SubeMesajGroupBox.Enabled = false;
         }
     }
     else
     {
         MessageBox.Show("Lütfen boş alanları doldurunuz.", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }