Adding Confirmation Email Receipt

T

Todd

Is it possible to add code that will give the sender of
the email a confirmation receipt once the email has been
opened with code similar to this:

Private Sub CommandButton3_Click()
ActiveWorkbook.SendMail "[email protected]", _
"Test"

End Sub


Thanks once again for all of your help.
 
R

Ron de Bruin

Hi Tod

With Outlook code you can ask this but most users will click No
on that msgbox.
 
R

Ron de Bruin

Hi todd

See the VBA help for

..ReadReceiptRequested

Note: you can't use this with SendMail
And you must use SendMail to send a workbook that is not saved
 
Top