Compose.Send

Sends the item. This action must be specified as a subcommand of Compose.Action.

Parameters

Compose.id (Required)

Specifies the identifier of the appointment item being composed, as returned from Compose.Action.

User.context (Required)

Specifies the context identifier for this user’s session.

Return Values

Returns the same values as Compose.Action.

If the sent item is a draft item, this method also returns Item.action.folderUpdate to indicate that the folder list view might need to be updated.

Example

<FORM method=post action="/servlet/webacc">
   <INPUT type=hidden name=User.context value=xyz>
   <INPUT type=hidden name=action value=Compose.Action>
   <INPUT type=hidden name=Compose.id value=1>
   . . .
   <INPUT type=input name=Item.to value="jdoe, jsmith">
   . . .
   <INPUT type=submit name=Compose.Send value="Send">
   <INPUT type=submit name=Compose.Directory value="Address Book">
   <INPUT type=submit name=Compose.BusySearch value="Busy Search">
   <INPUT type=submit name=Compose.Cancel value="Cancel">
</FORM>