如题?Dim o As New Microsoft.Office.Interop.Outlook.Application
Dim msg As Microsoft.Office.Interop.Outlook.MailItem
msg = o.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem)
msg.Recipients.Add("spring.me@qq.com") '收件人郵件地址
msg.Subject = "采购单" '郵件主旨
Dim body As String = "<html><body>内容</body></html>"
Dim content As String =<img style = "height:50px" src=****"images\1.jpg" & ">
msg.HTMLBody = body.Replace("内容", "这儿可点击进入: "& content)
msg.Attachments.Add("d:\test.txt") '添加採購訂單pdf件為附件
msg.Send()
想在发送的htmlbody内容增加一个本地LOGO图片作为邮件正文里面的签名图片,不知道这个怎么加?