Select-Email Cmdlet
IMAP データを検索します。
Syntax
Select-Email [parameters]
Remarks
Select-Email コマンドレットを使って、SQL SELECT ステートメントに似た構文を用いてIMAP データを検索できます。
$conn = Connect-Email -Port 993 -Server 'outlook.office365.com' -Password 'password' -User 'user' -Protocol 'IMAP' -SMTPPort 587 SMTP Server 'smtp.office365.com' Select-Email -Connection $conn -Table "[INBOX]" -Columns @("From","Subject") -Where "Subject='Test'"