Compose.CC

Adds recipients to the specified composition as carbon copy recipients, which allows recipients to be added from other sources besides the keyboard (for example, from a directory or address book). This action must be specified as a subcommand of Compose.Action.

Parameters

Compose.id (Required)

Specifies the identifier of the item being composed.

Directory.Item.email (Required)

Specifies where to send this item. This parameter can be repeated so that multiple recipients can be specified with one request.

User.context (Required)

Specifies the context identifier for this user’s session.

Return Values

Returns the same values as Compose.Action.

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 id=cb1 type="checkbox" name=Directory.Item.email  
       value="jdoe">
   <INPUT id=cb2 type="checkbox" name=Directory.Item.email
       value="jsmith">               
   <INPUT Type=submit name=Compose.To value="To">
   <INPUT Type=submit name=Compose.CC Value="CC">
   <INPUT Type=submit name=Compose.BC value="BC">
</FORM>