type.inbound
and regex.icontains(sender.email.domain.domain, '.*outlook.com.+')
// Negate legitimate outlook root domains
and sender.email.domain.root_domain not in (
'outlook.com.au',
'outlook.com.br',
'outlook.com.ar',
'outlook.at',
'outlook.be',
'outlook.cl',
'outlook.cz',
'outlook.dk',
'outlook.fr',
'outlook.de',
'outlook.com.gr',
'outlook.co.il',
'outlook.in',
'outlook.co.id',
'outlook.ie',
'outlook.it',
'outlook.hu',
'outlook.jp',
'outlook.kr',
'outlook.lv',
'outlook.my',
'outlook.co.nz',
'outlook.com.pe',
'outlook.ph',
'outlook.pt',
'outlook.sa',
'outlook.sg',
'outlook.sk',
'outlook.es',
'outlook.co.th',
'outlook.com.tr',
'outlook.com.vn'
)
and sender.email.email not in $recipient_emails
Playground
Test against your own EMLs or sample data.