mail read confirmation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • saaar

    #1

    mail read confirmation

    Hi,
    i's trying te send an automtic email from an ac2000 form with a cmdbuttum.
    Now, i am trying to get a read-confirmation . Iam using Outlook as mine
    emailprogram. Is it possile to achieve this ?
    my present command :
    '--------------------------------------------------------------------------------------------------------------------------------
    Dim objOl As Outlook.Applica tion
    Dim objMail As Object
    Dim bds As String

    Set objOl = Outlook.Applica tion 'Start Outlook
    Set objMail = objOl.CreateIte m(olMailItem)

    With objMail
    .To = saarb@mflskqdfl .nl
    .Body = bds
    .NoAging = True
    .Importance = olImportanceHig h
    '.Display
    .Save
    .Send
    End With
    '----------------------------------------------------------------------------------------------------------------------------------------------------

    thks, Saar


Working...