J
Janet
With the code below, every email is sent twice. Anybody tell me why?
Dim txtBody as string
txtBody = "testing 2.0 email"
Dim MailObj As New System.Net.Mail.SmtpClient
MailObj.Host = "localhost"
MailObj.Send("(e-mail address removed)", "(e-mail address removed)", "Online Search Request", txtBody)
MailObj = Nothing 'Cleanup
Thanks, Janet
Dim txtBody as string
txtBody = "testing 2.0 email"
Dim MailObj As New System.Net.Mail.SmtpClient
MailObj.Host = "localhost"
MailObj.Send("(e-mail address removed)", "(e-mail address removed)", "Online Search Request", txtBody)
MailObj = Nothing 'Cleanup
Thanks, Janet