How do I add an Image in my code?

丶灬走出姿态 提交于 2019-12-13 08:39:08

问题


Sub SendBirthdayMessage()
    Dim olkContacts As Outlook.Items, _
        olkContact As Object, _
        olkMsg As Outlook.MailItem
    Set olkContacts = Session.GetDefaultFolder(olFolderContacts).Items
    For Each olkContact In olkContacts
        If olkContact.Class = olContact Then
            If (Month(olkContact.Birthday) = Month(Date)) And (Day(olkContact.Birthday) = Day(Date)) Then
                Set olkMsg = Application.CreateItem(olMailItem)
                With olkMsg
                    .Recipients.Add olkContact.Email1Address
                    'Change the subject as needed'
                    .Subject = "Happy Birthday " & olkContact.FirstName
                    'Change the message as needed'
                    .HTMLBody = "ICD wanted to wish you a Happy Birthday Today!!!"
                    'Change Display to Send if you want the messages sent automatically'
                    .Send
                End With
            End If
        End If
    Next
    Set olkMsg = Nothing
    Set olkContact = Nothing
    Set olkContacts = Nothing
End Sub

回答1:


The HTML body must refer to the image through the src:cid attribute (<img src="cid:xyz">), where xyz is the value of the PR_INTERNET_CONTENT_ID property (DASL name http://schemas.microsoft.com/mapi/proptag/0x662A001F) set on attachment using Attachment.PropertyAccessor.SetProperty.



来源:https://stackoverflow.com/questions/25292136/how-do-i-add-an-image-in-my-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!