[CODE lang="csharp" title="Form"]private void button1_Click(object sender, EventArgs e)
{
SmtpClient sc = new SmtpClient();
sc.Port = 587;
sc.Host = "smtp.gmail.com";
sc.EnableSsl = true;
string kime = textBox1.Text;
string konu = textBox2.Text;
string icerik = textBox3.Text;
sc.Credentials = new NetworkCredential("
[email protected]", "şifreniz");
MailMessage mail = new MailMessage();
mail.From = new MailAddress("
[email protected]", "Ahmet Cansever");
mail.To.Add(kime);
//mail.To.Add("
[email protected]");
//mail.CC.Add("
[email protected]");
//mail.CC.Add("
[email protected]");
mail.Subject = konu;
mail.IsBodyHtml = true;
mail.Body = icerik;
mail.Attachments.Add(new Attachment(DosyaYolu));
sc.Send(mail);[/CODE]