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
答案 0 :(得分:0)
HTML正文必须通过src:cid属性(<img src="cid:xyz">
)引用图像,其中xyz是使用Attachment.PropertyAccessor在附件上设置的PR_INTERNET_CONTENT_ID属性(DASL名称http://schemas.microsoft.com/mapi/proptag/0x662A001F
)的值。的SetProperty。