NET环境下几种不同的邮件发送解决方案参考.pdfVIP

  • 0
  • 0
  • 约7.06千字
  • 约 9页
  • 2021-10-27 发布于福建
  • 举报

NET环境下几种不同的邮件发送解决方案参考.pdf

.NET 环境下几种不同的邮件发送解决方案 1、 使用 outLook 提供的发送 如:我见过的用友软件 U8生产制造 ( 演示版 ) ,其中的邮件功能就是通过调用 outLook 的 ActiveX 组件 优点:开发简单 缺点:依赖 outlook 组件, SMTP邮件服务 邮件发送的代码如下: Private Sub Send() Dim outObj As New Outlook.Application() Dim Item As Outlook.MailItemClass Item = outObj.CreateItem(0) Item.To = lihonggen0@163.com Item.Subject = hello Item.Body = hell Item.Attachments.Add(C:\abc.txt) Item.Send() End Sub 参考: 使用 Microsoft Outlook 2002 开发解决方案 /china/msdn/library/dndotnetout2k2/html/odc_oldevsol.

文档评论(0)

1亿VIP精品文档

相关文档