EmailMailbox.SendMessageAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
SendMessageAsync(EmailMessage) |
지정된 전자 메일 메시지를 비동기적으로 보냅니다. |
SendMessageAsync(EmailMessage, Boolean) |
지정된 전자 메일 메시지를 비동기적으로 보냅니다. |
SendMessageAsync(EmailMessage)
지정된 전자 메일 메시지를 비동기적으로 보냅니다.
public:
virtual IAsyncAction ^ SendMessageAsync(EmailMessage ^ message) = SendMessageAsync;
/// [Windows.Foundation.Metadata.Overload("SendMessageAsync")]
IAsyncAction SendMessageAsync(EmailMessage const& message);
[Windows.Foundation.Metadata.Overload("SendMessageAsync")]
public IAsyncAction SendMessageAsync(EmailMessage message);
function sendMessageAsync(message)
Public Function SendMessageAsync (message As EmailMessage) As IAsyncAction
매개 변수
- message
- EmailMessage
보낼 전자 메일 메시지입니다.
반환
작업이 완료되었음을 나타내는 비동기 작업입니다.
- 특성
Windows 요구 사항
앱 기능 |
email
emailSystem
|
추가 정보
적용 대상
SendMessageAsync(EmailMessage, Boolean)
지정된 전자 메일 메시지를 비동기적으로 보냅니다.
public:
virtual IAsyncAction ^ SendMessageAsync(EmailMessage ^ message, bool smartSend) = SendMessageAsync;
/// [Windows.Foundation.Metadata.Overload("SmartSendMessageAsync")]
IAsyncAction SendMessageAsync(EmailMessage const& message, bool const& smartSend);
[Windows.Foundation.Metadata.Overload("SmartSendMessageAsync")]
public IAsyncAction SendMessageAsync(EmailMessage message, bool smartSend);
function sendMessageAsync(message, smartSend)
Public Function SendMessageAsync (message As EmailMessage, smartSend As Boolean) As IAsyncAction
매개 변수
- message
- EmailMessage
보낼 전자 메일 메시지입니다.
- smartSend
-
Boolean
bool
True이면 업데이트된 텍스트만 보내고 전체 메시지 스레드를 포함하려면 false입니다.
반환
작업이 완료되었음을 나타내는 비동기 작업입니다.
- 특성
Windows 요구 사항
앱 기능 |
email
emailSystem
|