PHP Code:
Dim Mail As New MailMessage
Mail.Subject = sbjt.Text
Mail.To.Add(eml.Text)
Mail.From = New MailAddress(fml.Text)
Mail.Body = body.Text
Dim SMTP As New SmtpClient("smtp.gmail.com")
SMTP.EnableSsl = True
SMTP.Credentials = New System.Net.NetworkCredential("username", "password")
SMTP.Port = "587"
SMTP.Send(Mail)
fml = User's g-mail (textbox)
sbjt = subject textbox
body = report information richtextbox
, I get this message in this line
Help will be really appreciated






