Select-Gmail Cmdlet
Searches Gmail data.
Syntax
Select-Gmail [parameters]
Remarks
The Select-Gmail cmdlet allows you to use a syntax similar to SQL SELECT statements to search Gmail data.
$conn = Connect-Gmail -User 'MyUser' -Password 'MyPassword'
Select-Gmail -Connection $conn -Table "Inbox" -Columns @("Id","MessageBody") -Where "From='[email protected]'"