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

Esta resposta lhe foi útil?

 Imprimir este Artigo

Veja também

How do I keep a copy of emails on the server with Outlook?

Open Outlook interface, and click on "Tools -> E-mail Accounts". Select "View or change...

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...

I try to send and email throught Outlook but i got the error message "RELAY not allowed" why?

You have to enabled SMTP Authentication **Important - Always use this format username@domain.com...

What is Greylisting?

Greylisting (or graylisting) is a method of defending e-mail users...

What is the detail for my SMTP and POP3 Server?

If your domain has already pointed to our NameServer, you can just use : mail.yourdomain.com If...