(→Ignore EWS Certification Error) |
|||
19번째 줄: | 19번째 줄: | ||
=== Ignore EWS Certification Error === | === Ignore EWS Certification Error === | ||
− | <syntaxhighlight lang="csharp" title="C#">ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;</syntaxhighlight> | + | <syntaxhighlight lang="csharp" title="C#" line>ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;</syntaxhighlight> |
=Exchange Management Console= | =Exchange Management Console= |
2022년 3월 8일 (화) 15:08 기준 최신판
목차
Development with Exchange
Working with Exchange Web Service(EWS)
Exchange Web Service를 사용하는 예제.
Working with E-Mail Message
EWS를 통해 메세지를 생성하고 전송하는 예제.
관련 사이트
- Creating E-mail Messages
- Sending E-mail Messages
- Sending mail using Microsoft Exchange Web Service
- EWS Managed API 2.0
- Microsoft Exchange Web Services Managed API 2.2
Ignore EWS Certification Error
ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;
Exchange Management Console
MailBox 관련
MailBox 정보
Get-MailBox -Server ExchangeServerName | Select-Object *
MailBox 사용 현황
Get-MailboxStatistics -Server ExchangeServerName | Select-Object *