Hey guys, I am making a program for CO2 (not a hack) in visual basic 2012, I made report for bugs form and here's the code for it to send an e-mail, using g-mails.
eml = My g-mail
fml = User's g-mail (textbox)
sbjt = subject textbox
body = report information richtextbox
, I get this message in this line
[Only registered and activated users can see links. Click Here To Register...]
Help will be really appreciated
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
[Only registered and activated users can see links. Click Here To Register...]
Help will be really appreciated