sendEmailType 복합 형식
작업이 실행될 때 전자 메일을 보내도록 지정하는 데 사용되는 작업 유형을 정의합니다. 이 형식은 전자 메일 메시지를 모델링하는 데 사용되는 모든 요소를 정의합니다.
<xs:complexType name="sendEmailType">
<xs:complexContent>
<xs:extension
base="actionBaseType"
>
<xs:all>
<xs:element name="Server"
type="nonEmptyString"
/>
<xs:element name="Subject"
type="string"
minOccurs="0"
/>
<xs:element name="To"
type="string"
minOccurs="0"
/>
<xs:element name="Cc"
type="string"
minOccurs="0"
/>
<xs:element name="Bcc"
type="string"
minOccurs="0"
/>
<xs:element name="ReplyTo"
type="string"
minOccurs="0"
/>
<xs:element name="From"
type="string"
minOccurs="0"
/>
<xs:element name="HeaderFields"
type="headerFieldsType"
minOccurs="0"
/>
<xs:element name="Body"
type="string"
minOccurs="0"
/>
<xs:element name="Attachments"
type="attachmentsType"
minOccurs="0"
/>
</xs:all>
</xs:extension>
</xs:complexContent>
</xs:complexType>
자식 요소
요소 |
Type |
Description |
Attachments |
attachmentsType |
전자 메일 메시지의 첨부 파일 목록을 지정합니다.
|
숨은 참조 |
string |
전자 메일 메시지의 숨은 참조 줄에 사용되는 이메일 주소를 지정합니다.
|
본문 |
string |
전자 메일 메시지 본문의 텍스트를 지정합니다.
|
Cc |
string |
전자 메일 메시지의 참조 줄에 사용되는 이메일 주소를 지정합니다.
|
시작 |
string |
보낸 사람의 전자 메일 주소를 지정합니다.
|
HeaderFields |
headerFieldsType |
전자 메일 메시지의 헤더에 사용되는 헤더 필드와 해당 값을 지정합니다.
|
ReplyTo |
string |
전자 메일 메시지에서 회신되는 전자 메일 주소를 지정합니다.
|
서버 |
nonEmptyString |
전자 메일 메시지를 보내는 데 사용되는 전자 메일 서버를 지정합니다.
|
제목 |
string |
전자 메일 메시지의 제목을 지정합니다.
|
대상 |
string |
전자 메일을 보낼 전자 메일 주소를 지정합니다.
|
요구 사항
요구 사항 |
값 |
지원되는 최소 클라이언트
|
Windows Vista [데스크톱 앱만 해당]
|
지원되는 최소 서버
|
Windows Server 2008 [데스크톱 앱만 해당]
|