我有以下代码,我正在尝试从我的 Windows 应用程序发送一封电子邮件,但它不工作......有什么帮助吗?请注意,我正在使用 vb.net 并且我没有收到任何错误.. 我只是没有收到任何电子邮件!
Private Sub senemail()
'create the mail message
Dim mail As New MailMessage()
'set the addresses
mail.From = New MailAddress("jocelyne_elkhoury@inmobiles.net")
mail.To.Add("jocelyne_el_khoury@hotmail.co.uk")
'set the content
mail.Subject = "This is an email"
mail.Body = "this is a sample body"
'send the message
Dim smtp As New SmtpClient("127.0.0.1")
smtp.Send(mail)
End Sub