``` Powershell
Importer de nødvendige modulene
Import-modul Microsoft.Exchange.Connection.Powershell
Import-modul Microsoft.PowerShell.Utility
Koble til Exchange Online ved å bruke legitimasjonen din
$credential =Get-Credential
$session =New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $credential -Authentication Basic -AllowRedirection
Opprett en variabel for å lagre e-postmappen
$folderName ="Innboks"
Få meldingene fra den angitte mappen
$messages =Get-Message -Session $session -Folder "$folderName"
Søk gjennom alle meldinger og vis e-postteksten
foreach ($message i $messages)
{
Write-Host "Fra:$($message.Sender)"
Write-Host "Emne:$($message.Subject)"
Skrivevert "Body:$($message.Body)"
# Write-Host "Attachments:$($message.attachments.name)"
}
```