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

Hai trovato questa risposta utile?

 Stampa Articolo

Leggi anche

What do you mean by Catch All Email?

In short, the catch-all email function allows you to receive all incoming email that is addressed...

How do my email address user update their password?

Follow this instruction : Log into SeekDotNet webmail (http://mail.yourdomainname.com)...

How do I setup Outlook Express

Please note, replace yourdomain.com with your actual domain name. 1. Open Express. 2....

How to set up email with Outlook 2003?

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

I got Error 554 when send emails from Outlook

How to fix the problem: In Outlook, go to "Tools" and select "Email Accounts". Make sure "View...