Hi There!
need someone's help @once.
i'm writing a vb code to send a email from simple vb form.. but ends up with the following error.. need your help!
Error....
"Command parameter not implemented. The server response was: Authenticate first (#5.5.0)"}"
code below..
Try
Dim Smtp_Server As New SmtpClient()
Dim e_mail As New MailMessage()
Smtp_Server.UseDefaultCredentials = False
Smtp_Server.Credentials = New Net.NetworkCredential("atq@mydomain-name.com", "passwordhere")
Smtp_Server.Port = 25
Smtp_Server.Host = "mail.overseas-global.com"
Smtp_Server.EnableSsl = False
e_mail = New MailMessage()
e_mail.From = New MailAddress(txtFrom.Text)
e_mail.To.Add(txtTo.Text)
e_mail.Subject = "Email Sending"
e_mail.IsBodyHtml = False
e_mail.Body = txtMessage.Text
Smtp_Server.Send(e_ ...
Go to the complete details ...