Schema "mule-smtp.xsd"
Target Namespace:
http://www.mulesoft.org/schema/mule/smtp
Defined Components:
global elements, 1 local element, 4 complexTypes, 1 attribute group
Default Namespace-Qualified Form:
Local Elements: qualified; Local Attributes: unqualified
Schema Location:
http://www.mulesoft.org/schema/mule/smtp/3.3/mule-smtp.xsd; see XML source
Imports Schemas (4):
mule-email.xsd [src], mule-schemadoc.xsd [src], mule.xsd [src], xml.xsd [src]
Imported by Schemas (2):
_mule-all-included.xsd, mule-smtps.xsd [src]
Annotation
The SMTP transport can be used to connect to and send data to a SMTP mail server. The [SMTPS Transport] is similar but uses secure connections over SSL/TLS.
All Element Summary
connector
Type:
Content:
complex, 10 attributes, attr. wildcard, 7 elements
Subst.Gr:
may substitute for element mule:abstract-connector
Defined:
globally; see XML source
Used:
never
endpoint
Type:
Content:
complex, 20 attributes, attr. wildcard, 16 elements
Subst.Gr:
may substitute for element mule:abstract-global-endpoint
Defined:
globally; see XML source
Used:
never
gmail-connector
Type:
Content:
complex, 10 attributes, attr. wildcard, 7 elements
Subst.Gr:
may substitute for element mule:abstract-connector
Defined:
globally; see XML source
Used:
never
header Additional header name and value, added to the message.
Type:
Content:
empty, 3 attributes
Defined:
locally witnin smtpConnectorType complexType; see XML source
outbound-endpoint
Type:
Content:
complex, 20 attributes, attr. wildcard, 16 elements
Subst.Gr:
may substitute for element mule:abstract-outbound-endpoint
Defined:
globally; see XML source
Used:
never
Complex Type Summary
Content:
complex, 10 attributes, attr. wildcard, 6 elements
Defined:
globally; see XML source
Includes:
definitions of 6 attributes
Used:
Content:
complex, 20 attributes, attr. wildcard, 16 elements
Defined:
globally; see XML source
Used:
Content:
complex, 20 attributes, attr. wildcard, 16 elements
Defined:
globally; see XML source
Used:
Content:
complex, 10 attributes, attr. wildcard, 7 elements
Defined:
globally; see XML source
Includes:
definition of 1 element
Used:
Attribute Group Summary
Content:
Defined:
globally; see XML source
Includes:
definitions of 6 attributes
Used:
XML Source
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.mulesoft.org/schema/mule/smtp" xmlns="http://www.mulesoft.org/schema/mule/smtp" xmlns:email="http://www.mulesoft.org/schema/mule/email" xmlns:mule="http://www.mulesoft.org/schema/mule/core" xmlns:schemadoc="http://www.mulesoft.org/schema/mule/schemadoc" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:annotation>
<xsd:documentation>
The SMTP transport can be used to connect to and send data to a SMTP mail server. The [SMTPS Transport] is similar but uses secure connections over SSL/TLS.
</xsd:documentation>
<xsd:appinfo>
<schemadoc:short-name>SMTP</schemadoc:short-name>
<schemadoc:page-title>SMTP Transport</schemadoc:page-title>
<schemadoc:artifact-name>email</schemadoc:artifact-name>
<schemadoc:transport-features dispatchEvents="true" receiveEvents="false" requestEvents="true" streaming="false" transactions="false">
<schemadoc:MEPs default="one-way" supported="one-way"/>
</schemadoc:transport-features>
</xsd:appinfo>
</xsd:annotation>
<xsd:element name="connector" substitutionGroup="mule:abstract-connector" type="smtpConnectorType"/>
<!-- separate base so that header is separate and in local namespace -->
<xsd:complexType name="baseSmtpConnectorType">
<xsd:complexContent>
<xsd:extension base="mule:connectorType">
<!-- seems like we should be able to better restrict some of these types -->
<xsd:attribute name="bccAddresses" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
Comma separated list of addresses for blind copies.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ccAddresses" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
Comma separated list of addresses for copies.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="contentType" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
Mime type for the outgoing message.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="fromAddress" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The from address for the outgoing message.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="replyToAddresses" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The reply-to address for the outgoing message.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="subject" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The default subject for the outgoing message if none is set in the message.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="smtpConnectorType">
<xsd:complexContent>
<xsd:extension base="baseSmtpConnectorType">
<xsd:sequence maxOccurs="unbounded" minOccurs="0">
<xsd:element name="header" type="mule:keyValueType">
<xsd:annotation>
<xsd:documentation>
Additional header name and value, added to the message.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="gmail-connector" substitutionGroup="mule:abstract-connector" type="smtpConnectorType"/>
<xsd:element name="outbound-endpoint" substitutionGroup="mule:abstract-outbound-endpoint" type="outboundEndpointType"/>
<xsd:complexType name="outboundEndpointType">
<xsd:complexContent>
<!--
The only valid exchange-pattern is one-way which is the default. No need to make
the exchange-pattern attribute configurable.
-->
<xsd:attributeGroup ref="email:addressAttributes"/>
<xsd:attributeGroup ref="addressProperties"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="endpoint" substitutionGroup="mule:abstract-global-endpoint" type="globalEndpointType"/>
<xsd:complexType name="globalEndpointType">
<xsd:complexContent>
<!--
The only valid exchange-pattern is one-way which is the default. No need to make
the exchange-pattern attribute configurable.
-->
<xsd:attributeGroup ref="email:addressAttributes"/>
<xsd:attributeGroup ref="addressProperties"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:attributeGroup name="addressProperties">
<xsd:attribute name="to" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The destination for the email.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="from" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The address of the sender of the email.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="subject" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The email subject.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="cc" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
A comma separated list of email addresses to carbon copy to.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="bcc" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
A comma separated list of email addresses to blind carbon copy to.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="replyTo" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The address used by default if someone replies to the email.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:attributeGroup>
</xsd:schema>

XML schema documentation generated with DocFlex/XML RE 1.8.5 using DocFlex/XML XSDDoc 2.5.0 template set. All content model diagrams generated by Altova XMLSpy via DocFlex/XML XMLSpy Integration.