Autor Beitrag
DareDevil
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 70

Windows7
C# (VS 2010)
BeitragVerfasst: So 01.10.06 01:40 
So ich habe das Problem das mein E-Mail Programm keine E-Mails über meinen Rechner versenden will.

ausblenden C#-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
SmtpClient SmtpClient = new SmtpClient("localhost");
try
{
  SmtpClient.Send("newsletter@blind-pilot.com""emplp@gmx.net""Newsletter", richTextBox1.Text);
}
catch (Exception ex)
{
  MessageBox.Show(ex.Message);
}


Es kommt auch keine Fehlermeldung. Ich möchte(muss) die E-Mail über den integrierten SMTP-Server vom Internet-Infomationsdienst versenden.

Greez

Pascal
DareDevil Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 70

Windows7
C# (VS 2010)
BeitragVerfasst: So 01.10.06 11:10 
Problem gelöst dauert ca 5Stunden bis die E-Mail da ist.

Greez

Pascal