The next scripts use SMTP Authentication to ship mail out of your script –
C#:
<% @Web page Language=”C#” %>
<% @Import Namespace=”System.Internet.Mail” %>
<% MailMessage mail = new MailMessage(); mail.To = “[email protected]”; mail.From = “[email protected]”; mail.Topic = “this can be a check electronic mail.”; mail.Physique = “Some textual content goes right here”; mail.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/smtpauthenticate”, “1”); //primary authentication mail.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/sendusername”, “[email protected]”); //set your username right here mail.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/sendpassword”, “PASSWORD”); //set your password right here SmtpMail.SmtpServer = “localhost”; //your actual server goes right here SmtpMail.Ship( mail ); %>
VB .NET:
<% @Web page Language=”VB” %>
<% @Import Namespace=”System.Internet.Mail” %>
<% Dim mail As New MailMessage() mail.To = “[email protected]” mail.From = “[email protected]” mail.Topic = “this can be a check electronic mail.” mail.Physique = “Some textual content goes right here” mail.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/smtpauthenticate”, “1”) ‘primary authentication mail.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/sendusername”, “[email protected]”) ‘set your username right here mail.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/sendpassword”, “PASSWORD”) ‘set your password right here SmtpMail.SmtpServer = “localhost” ‘your actual server goes right here SmtpMail.Ship(mail) %>
Reference: http://www.systemwebmail.com/faq/3.8.aspx