mail Schema
mail Element
mail Schema : mail Element

Glossary Item Box

Description

The parameters for sending an entity by mail.
Namespace (none)

Diagram

include-attributes Element comment Element subject Element bcc-recipients Element cc-recipients Element to-recipients Element All mail Element

Overview

mail
The parameters for sending an entity by mail.
All
to-recipients xs:string
Comma-delimited list of "to" recipient email addresses.
cc-recipients optional xs:string
Comma-delimited list of "cc" recipient email addresses.
bcc-recipients optional xs:string
Comma delimited list of "bcc" recipient email addresses.
subject optional xs:string
Subject of the email.
comment optional xs:string
Content of the message body of the email.
include-attributes optional
List of the enabled/disabled features of the mail message, for example, what is included with the message.
Sequence
attribute 1..2
value optional xs:boolean

Source

<xs:element name="mail" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
                The parameters for sending an entity by mail.
            </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:all>
      <xs:element name="to-recipients" type="xs:string" minOccurs="1" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>
                            Comma-delimited list of "to" recipient email addresses.
                        </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="cc-recipients" type="xs:string" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>
                            Comma-delimited list of "cc" recipient email addresses.
                        </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="bcc-recipients" type="xs:string" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>
                            Comma delimited list of "bcc" recipient email addresses.
                        </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="subject" type="xs:string" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>
                            Subject of the email.
                        </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="comment" type="xs:string" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>
                            Content of the message body of the email.
                        </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="include-attributes" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>
                            List of the enabled/disabled features of the mail message, for example, what is included with the message.
                        </xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="attribute" minOccurs="1" maxOccurs="2">
              <xs:complexType>
                <xs:attribute name="name" type="include-attributes" />
                <xs:attribute name="value" type="xs:boolean" />
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:all>
  </xs:complexType>
</xs:element>

See Also