How do I send email from ASP using SMTP Authentication in ASP.NET?

Here is the code sample :
'Create a new MailMessage object and specify the"From" and "To" addresses
Dim Email As New System.Net.Mail.MailMessage( _
   "Brad.Kingsley@orcsweb.com", "Brad@KingsleyTeam.com")
Email.Subject = "test subject"
Email.Body = "this is a test"
Dim mailClient As New System.Net.Mail.SmtpClient()
'This object stores the authentication values
Dim basicAuthenticationInfo As _
   New System.Net.NetworkCredential("username", "password")
'Put your own, or your ISPs, mail server name onthis next line
mailClient.Host = "Mail.RemoteMailServer.com"
mailClient.UseDefaultCredentials = False
mailClient.Credentials = basicAuthenticationInfo
mailClient.Send(Email)
You can use your own email credentials, for example, your domain is abc.com then the email host : mail.abc.com and the username is youremail@abc.com

Was this answer helpful?

 Print this Article

Also Read

How to set up email with Outlook 2002?

Follow the steps below to set up Outlook 2002 to retrieve email from our mail server. From...

How to setup email with Outlook 2007?

Configuring your email client: Outlook 2007 Open Outlook 2007. Click...

How to increase mailbox size on SmarterMail?

To set or edit the mailbox size for an individual user in SmarterMail: 1.Login to the web...

Setup Email in Iphone / Ipad

1.) Go to  Settings >>  Mail, Contacts, Calendars2.) To add a new Email...

How are the email accounts accessed?

...