Nunja ich weiß jetzt nicht od das die richtige section ist
habe nämlich nix anderes gefunden.
Oke mein Problem:
Ich habe in VB eine Anmelung gemacht
jedoch taucht folgender Fehler auf.
PHP Code:
Dim mymailmessage As New MailMessage()
For i = 1 To Integer.Parse(TextBox4.Text)
Try
mymailmessage.From = New MailAddress("
") 'has to be a gmail account
mymailmessage.To.Add(TextBox1.Text)
mymailmessage.Subject = TextBox3.Text
mymailmessage.Body = TextBox2.Text
Dim Smtp As New SmtpClient("smtp.gmail.com")
Smtp.Port = 587
Smtp.EnableSsl = True
Smtp.Credentials = New System.Net.NetworkCredential("
", "yourpassword") ' "Your gmail adress" , "Your password"
Smtp.Send(mymailmessage)
Catch ex As Exception
End Try
Next
MsgBox("Emails spammed !", MsgBoxStyle.Information, "lol")
End Sub
Da wird mir ein Fehler angezeigt !
weiß einer ganz Spontan was da für ein Fehler sein kann?
oder soll ich noch mehr Informationen rausrücken?
mfg ManuX.






