如果您想要特别想要一个Outlook消息,并且您想要更多选项来发送内容(正文,附件,BCC等):
原文链接:https://www.f2er.com/vb/255935.htmlDim Outl As Object Outl = CreateObject("Outlook.Application") If Outl IsNot Nothing Then Dim omsg As Object omsg = Outl.CreateItem(0) '=Outlook.OlItemType.olMailItem' 'set message properties here...' omsg.Display(True) 'will display message to user End If