Merhabalar bu yazımızda STMP Mail servisi kullanımı ile ilgili basit bir örnek yapacağız. Kaynak Kodu İndir STMP_Mail.aspx.cs : using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Net; using System.Net.Mail; namespace STMP_Mail_Gonderimi { public partial class STMP_Mail : System.Web.UI.Page { protected void MailGonder(object sender, EventArgs e) { using (MailMessage Mailimiz = new ...
Daha Fazlası.. »