irfanoglu02
Üye
- Katılım
- 10 Tem 2020
- Mesajlar
- 42
- Puanları
- 1
- Yaş
- 24
İYİ GÜNLER C# İLE KURUMSAL MAİL UZANTILI MAİL GÖDNERMEK İSTİYORUM YARDIMCI OLABİLİRMİSİNİZ?
using System;
using System.Windows.Forms;
using System.Net.Mail;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
mail.From = new MailAddress("[email protected]");
mail.To.Add("to_address");
mail.Subject = "Test Mail";
mail.Body = "This is for testing SMTP mail from GMAIL";
SmtpServer.Port = 587;
SmtpServer.Credentials = new System.Net.NetworkCredential("username", "password");
SmtpServer.EnableSsl = true;
SmtpServer.Send(mail);
MessageBox.Show("mail Send");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
}
Destekleyip desteklemedigini nasıl ögrenebilirim acaba teşekkür ederim yanıtınız içinEğer mail serveriniz SMTP destekliyorsa bunu kullanabilirsiniz.
Kod:using System; using System.Windows.Forms; using System.Net.Mail; namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com"); mail.From = new MailAddress("[email protected]"); mail.To.Add("to_address"); mail.Subject = "Test Mail"; mail.Body = "This is for testing SMTP mail from GMAIL"; SmtpServer.Port = 587; SmtpServer.Credentials = new System.Net.NetworkCredential("username", "password"); SmtpServer.EnableSsl = true; SmtpServer.Send(mail); MessageBox.Show("mail Send"); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } } }
Anladım çok teşekkür ederimHosting firmanıza sorabilirsiniz. Eğer desteklemiyorsa aşağıdaki linkteki kitaplığı kullanarak IMAPI ve POP3 ile gönderebilirsiniz. Ayrıca daha çok yazılımla alakalı bi foruma sorarsanız daha çok cevap alırsınız. Bu forum genellikle Elektrik-elektronikle ilgilenen insanların yeri.
IMAP and POP3 Clients in C#