|
|
| |||||||
![]() |
| | Seçenekler |
|
#1
| ||||
| | ||||
eMAİL Göndermek c#.netusing System; using System.Web.Mail; void _SendEMail() { try { MailMessage e_Mail = new MailMessage(); e_Mail.From = ""; e_Mail.To = ""; e_Mail.Subject = "C# SMTP Mail"; //mail server veya kendi local makinanizdaki domain. SmtpMail.SmtpServer = "mail.server"; e_Mail.Body = "C# .NET de SMTP Mail gonderme"; SmtpMail.Send(e_Mail); MessageBox.Show("Your Message Successful Sent. ",MessageBoxButtons.OK, MessageBoxIcon.Information); } catch(Exception ex) { MessageBox.Show("Error: " + ex.Message.ToString(),"eMail",MessageBoxButtons.OK ,MessageBoxIcon.Error); } } |
![]() |
| Seçenekler | |
| |
Benzer Konular | ||||
| Konu | Konu Açanlar | Forum | Cevaplar | Güncel Mesajlar |
| Gmail ile Exe Dosyalarını Göndermek | özlem34 | Google Servisleri | 1 | 17-08-2008 07:14 |
| Perl ile Mail göndermek | B737 | Perl-Cgi | 0 | 24-01-2008 01:24 |
| Delphi İle Email Göndermek | Celebrian | Delphi | 0 | 24-12-2007 02:18 |
| AspEmail İle Mail Göndermek | egitimbilgisi | Asp kodları | 0 | 27-11-2007 07:01 |
| Php ile istediginiz bir kisiye e-posta göndermek için | B737 | PHP scriptler | 0 | 18-11-2007 12:10 |