Hallo zusammen.
Gerne würde ich über C# E-Mails versenden können und habe mir dazu im Internet ein Beispiel heraus gesucht.
Wie allerdings zu erwarten war, funktioniert das ganze natürlich nicht.
Nun möchte ich euch um Hilfe bitten.
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32:
| public partial class Form1 : Form { public Form1() { InitializeComponent(); }
public static void Sende_EMail(string emailUser, string emailAbsender, string smtpHost, string smtpUser, string smtpPasswort, string betreff, string bodyText) { MailMessage mail = new MailMessage(); MailAddress from = new MailAddress(emailAbsender); mail.To.Add(emailUser); mail.From = from; mail.Subject = betreff; mail.Body = bodyText; string host = smtpHost; int port = 25; SmtpClient client = new SmtpClient(host, port);
System.Net.NetworkCredential nc = new NetworkCredential(smtpUser, smtpPasswort); client.Credentials = nc;
client.Send(mail); }
private void button1_Click(object sender, EventArgs e) { Sende_EMail("<name>@vtg.admin.ch", "<name>@swissonline.ch", "smtp.hispeed.ch", "<name>@swissonline.ch", "<Passwort>", "Test", "Test"); } } } |
Die Authentifizierung wird bei swissonline benötigt.
Über eine baldige Antwort würde ich mich sehr freuen und danke euch schonmal.
Liebe Grüsse