SMTP ile mail göndermeden önce hosting hesabınız altında mail hesabı oluşturmanız gerekiyor.
<%@ Import Namespace="System.Net" %>
<%@ Import Namespace="System.Net.Mail" %>
<script language="C#" runat="server">
protected void Page_Load(object sender, EventArgs e)
{
//create the mail message
MailMessage mail = new MailMessage();
//set the addresses
mail.From = new MailAddress("mail@alanadiniz.com"); // Buraya mail kullanici adini girin
mail.To.Add("mail@gonderilecekdomain.com"); // mail gönderilecek adres
//set the content
mail.Subject = "This is an email"; // mail konusu
mail.Body = "This is from system.net.mail using C sharp with smtp authentication."; // mail içeriği
//send the message
SmtpClient smtp = new SmtpClient("mail.alanadiniz.com"); // SMTP server adresi
NetworkCredential Credentials = new NetworkCredential("postmaster@yourdomain.com", "password"); // buraya mail kullanıcı adı ve şifrenizi girin.
smtp.Credentials = Credentials;
smtp.Send(mail);
lblMessage.Text = "Mail Sent";
}
</script>
<html>
<body>
<form runat="server">
<asp:Label id="lblMessage" runat="server"></asp:Label>
</form>
</body>
</html>
- Ana Sayfa
-
Ürünler
- Tümünü Görüntüle
- Linux Bireysel Hosting
- Linux Bayi Hosting
- Linux Kurumsal Hosting
- Windows Bireysel Hosting
- Windows Bayi Hosting
- Windows Kurumsal Hosting
- VPS
- VDS
- CDS
- Colocation Server Hosting (Sunucu Barındırma)
- Dedicated Server Hosting (Sunucu Kiralama)
- Online Disk (FTP Backup) (Yedekleme Alanı)
- SSL Sertifikaları
- E-ticaret Paketleri
- Web Site
- Yeni Alan Adı Kaydet
- Alan Adı Transfer
- Duyurular
- Bilgi Bankası
- Sunucu/Ağ Durumu
- İletişim
-
Daha Fazla