How to open Outlook “New mail message” window from VB.NET

前端 未结 3 1550
逝去的感伤
逝去的感伤 2021-01-03 06:30

I\'ve a scenario in which user can make a selection from a grid (having uploaded files on local folder) and when user press \"send\", application should open Outlook \"New m

3条回答
  •  无人及你
    2021-01-03 07:19

    Dim Outl As Object
    Outl = CreateObject("Outlook.Application")
    If Outl IsNot Nothing Then
        Dim omsg As Object
        omsg = Outl.CreateItem(0)
        omsg.To = "yusuf@hotmail.com"
        omsg.bcc = "yusuf@gmail.com"
        omsg.subject = "Hello"
        omsg.body = "godmorning"
        omsg.Attachments.Add("c:\HP\opcserver.txt")
        'set message properties here...'
        omsg.Display(True) 'will display message to user
    

提交回复
热议问题