Application_ItemSend Doesn't Fire

G

Guest

The _ItemSend event doesn't fire. What am I missing? I vaguely recall
something about initializing the code at startup, however when I checked, all
of the references that I've found omit any information to the kind suggesting
that simply adding the procedure is sufficient.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

Debug.Print Now

If MsgBox("Request delivery and read receipts?", vbYesNo, "Freeman") =
vbYes Then
Item.ReadReceiptRequested = True
Item.OriginatorDeliveryReportRequested = True
Else
Item.ReadReceiptRequested = False
Item.OriginatorDeliveryReportRequested = False
End If

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top