繁体   English   中英

vb.net发送电子邮件

[英]vb.net send email

我想知道如何从vb应用程序中发送电子邮件? 任何人都可以协助从哪里开始?

在System.Net.Mail命名空间中使用SmtpClient类

例。

'create the mail message
Dim mail As New MailMessage()

'set the addresses
mail.From = New MailAddress("xx@xx")
mail.[To].Add("xx@xx")

'set the content
mail.Subject = "This is an email"
mail.Body = "this is a sample body"

'set the server
Dim smtp As New SmtpClient("localhost")

'send the message
Try
    smtp.Send(mail)
    Response.Write("Your Email has been sent sucessfully - Thank You")
Catch exc As Exception
    Response.Write("Send failure: " & exc.ToString())
End Try

您可以使用System.Net.Mail命名空间,查找它并查看它是否有帮助。 我使用C#,但我想它是类似的,创建一个客户端,然后是一条消息,设置消息的params然后client.Send()将发送消息。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM