```typescript
import { Test } from '@servicenow/sdk/core'
import '@servicenow/sdk-core/global'
Test({
  $id: Now.ID[''], // fill in a valid GUID string or the name of the test
  name: 'Validate Outbound Email Generated by Notification', // string
  description: 'Test to validate outbound email generated by a specific notification', // string
  active: true, // boolean
  failOnServerError: true // boolean
}, (atf) => {
  atf.email.validateOutboundEmailGeneratedByNotification({
    $id: Now.ID['0001'],
    sourceNotification: '02b3d8ccbf11110032a0854b3f0739e4', // sys_id | Record<'sysevent_email_action'>
    conditions: '' // string, Servicenow encoded query
  })
})
```
