i am using vb and smtpclient to send a email. i have a domain and server set up
every thing looks good to me. i can seem to find the issue
Dim MailClient As SmtpClient = New SmtpClient("117.100.13.11") MailClient.Credentials = New Net.NetworkCredential("hostingusername", "hostingpassword") Dim Mailmsg As New MailMessage Mailmsg.To.Clear() Mailmsg.To.Add(New MailAddress("[email protected]")) Mailmsg.From = New MailAddress("[email protected]) Mailmsg.Subject = SubjectS Mailmsg.Body = MessageS Mailmsg.IsBodyHtml = True MailClient.Send(Mailmsg)