hi I am sending the from my windows base app using the following code
Mail.Subject = "test email"
Mail.To.Add("to@xyz.com")
Mail.From = New MailAddress("from@abc.com")
Mail.Body = "Hello"
Dim attachment As System.Net.Mail.Attachment
attachment = New System.Net.Mail.Attachment("AttachPath")
Mail.Attachments.Add(attachment)
Dim SMTP As New SmtpClient("smtp.abc.com")
SMTP.EnableSsl = True
SMTP.Credentials = New System.Net.NetworkCredential("xyz@.abc.com", "password")
SMTP.Port = 25
SMTP.Send(Mail)
but I dont want to use
SMTP.Credentials = New System.Net.NetworkCredential("xyz@.abc.com", "password")
and also Interpub
can anyone have solution for this
