Send Event
Applies To
AppointmentItem object, ContactItem object, JournalItem object, MailItem object, MeetingRequestItem object, NoteItem object, PostItem object, RemoteItem object, ReportItem object, TaskItem object, TaskRequestItem object.
Description
Occurs when the user selects the Send action for an Outlook item. If you set the return value of this function to False, the Send action isn't completed and the item's inspector is left open.
Syntax
Function Item_Send( )
See Also
Close event, CustomAction event, CustomPropertyChange event, Forward event, Open event, PropertyChange event, Read event, Reply event, ReplyAll event, Write event.
Example
This example sends an item with an automatic expiration date of one week.
Function Item_Send()
myItem.ExpiryTime = Date + 7
End Function