HighTechTalks DotNet Forums  

Does anyone know smtp authentication in vb.net?

VB.net Data microsoft.public.dotnet.languages.vb.data


Discuss Does anyone know smtp authentication in vb.net? in the VB.net Data forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Maciej Franciszkowski
 
Posts: n/a

Default Does anyone know smtp authentication in vb.net? - 02-16-2010 , 01:11 PM






Does anyone know how to code smtp authentication?
below the code:

Imports System
Imports System.Net.Mail
....


Sub MailToAdmin()
Dim smtp As New SmtpClient("127.000.000.001")
Dim mail As New MailMessage()
Dim MessageSM As String
'create the mail message


Try
'set the addresses
mail.From = New
MailAddress("technologia.auto... (AT) wella (DOT) pl")
mail.To.Add("ad... (AT) wella (DOT) pl")


'set the content
mail.Subject = "text nag³ówka"
mail.Body = "Body messed¿a"


'send the message


smtp.Send(mail)


Catch myExceptionSM As Exception
MessageSM = "There is error: " +
myExceptionSM.ToString()
Finally
End Try


End Sub


/
Maciej

Reply With Quote
  #2  
Old   
Carl Klouda
 
Posts: n/a

Default RE: Does anyone know smtp authentication in vb.net? - 04-09-2010 , 08:54 AM






Here are a couple options

http://www.systemwebmail.com/faq/3.8.aspx
http://digitalcolony.com/2007/08/sending-email-in-aspnet-using-smtp.aspx

"Maciej Franciszkowski" wrote:

Quote:
Does anyone know how to code smtp authentication?
below the code:

Imports System
Imports System.Net.Mail
....


Sub MailToAdmin()
Dim smtp As New SmtpClient("127.000.000.001")
Dim mail As New MailMessage()
Dim MessageSM As String
'create the mail message


Try
'set the addresses
mail.From = New
MailAddress("technologia.auto... (AT) wella (DOT) pl")
mail.To.Add("ad... (AT) wella (DOT) pl")


'set the content
mail.Subject = "text nag³ówka"
mail.Body = "Body messed¿a"


'send the message


smtp.Send(mail)


Catch myExceptionSM As Exception
MessageSM = "There is error: " +
myExceptionSM.ToString()
Finally
End Try


End Sub


/
Maciej
.

Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.