Share via


2.3.67 LaunchEventSendMode

Target namespace: http://schemas.microsoft.com/office/mailappversionoverrides/1.1

Referenced by: LaunchEventDefinition

Defines acceptable values for the SendMode attribute on send events of the LaunchEvent extension point.<15>

Value

Meaning

PromptUser

This setting allows the user to also control sending. The user can bypass the add-in as it’s running, in case of an error, or if it is unavailable.

SoftBlock

This is the default setting. This setting allows only the add-in to control sending. The add-in gets to decide what to do in case of an error, and the email will be sent if the add-in is unavailable.

Block

This setting blocks sending if there’s an add-in error, or if it is unavailable.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xs:simpleType name="LaunchEventSendMode">
   <xs:restriction base="xs:string">
     <xs:enumeration value="PromptUser"/>
     <xs:enumeration value="SoftBlock"/>
     <xs:enumeration value="Block"/>
   </xs:restriction>
 </xs:simpleType>

See section 5.5 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).