ASP.NET(vb.net) & Send Email SMTP Authentication - In this article you will learn how to send email using ASP.NET and using SMTP authentication.
ShotDev Focus:
- ASP.NET(vb.net) & Send Email SMTP Authentication
Example
AspNetSendMailSMTPAuthentication.aspx
<%@ Import Namespace="System.Web.Mail"%> <%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim myMail As New MailMessage() myMail.To = "member@shotdev.com" myMail.From = "webmaster@shotdev.com" myMail.Subject = "My Subject" myMail.BodyFormat = MailFormat.Text myMail.Body = "My Body & Description" Dim strSMTP,cdoSendUsingPort,cdoBasic,UserName,Password As String strSMTP = "localhost" cdoSendUsingPort = 2 cdoBasic = 1 UserName = "weerachai" Password = "password" myMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", strSMTP) myMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", 25) myMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", cdoSendUsingPort) myMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", cdoBasic) myMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", UserName) myMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", Password) SmtpMail.SmtpServer = strSMTP SmtpMail.Send(myMail) myMail = Nothing Me.lblText.Text = "Mail Sending." End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText" runat="server"></asp:Label> </form> </body> </html>
Screenshot