MailMessage msg = new MailMessage();
msg.To = "kime@site.com"; // Kime
msg.From = "kimden@site.com; // Kimden
msg.Subject = "E-Posta Konusu"; // Konu
msg.Body = "E-Posta Metni"; // Mesja
msg.IsBodyHtml = false; // HTML formatı (true / false)
SmtpClient smtp = new SmtpClient();
smtp.Host = "mail.site.com"; // SMTP adresi
smtp.Send(msg);