Find all mailboxes with Send As permissions for someone other than yourself with Exchange PowerShell using this command:
Get-Mailbox | Get-ADPermission | where {($_.ExtendedRights -like “*Send-As*â€) -and -not ($_.User -like “NT AUTHORITYSELFâ€)} | FT -Wrap