Ein ASP.net E-Mail Script
Dim Mail As New System.Net.Mail.MailMessage Mail.Subject = „Anfrage von der Homepage“ Mail.To.Add(„IhreE-Mailadresse“) Mail.IsBodyHtml = True Mail.From = New System.Net.Mail.MailAddress(„IhreE-Mailadresse“) Mail.Body = „Hier kommt der Inhalt rein“ Dim SMTP As New System.Net.Mail.SmtpClient(„localhost“) SMTP.EnableSsl = False SMTP.Credentials = New System.Net.NetworkCredential(„IhreE-Mailadresse“, „Passwort“) SMTP.Port = 25 SMTP.Send(Mail)