TaskItem.Send Method

Outlook Developer Reference

Sends the task.

Syntax

expression.Send

expression   A variable that represents a TaskItem object.

Example

This Visual Basic for Applications (VBA) example uses CreateItem to create a simple task and delegate it as a task request to another user. Replace 'Dan Wilson' with a valid recipient name before running this example.

Visual Basic for Applications
  Sub AssignTask()
    Dim myItem As Outlook.TaskItem
    Dim myDelegate As Outlook.Recipient
Set MyItem = Application.CreateItem(olTaskItem)
MyItem.Assign
Set myDelegate = MyItem.Recipients.Add("Dan Wilson")
myDelegate.Resolve
If myDelegate.Resolved Then
    myItem.Subject = "Prepare Agenda for Meeting"
    myItem.DueDate = Now + 30
    myItem.Display
    myItem.<strong>Send</strong>
End If

End Sub

See Also