Notification does not include recipient from event parmIssue An email notification triggered by "Event is fired" was created that had both a hard coded recipient and also included event parm1 as recipient. The event was created correctly and parm1 contained the correct sys_id of the user as per the Business Rule. When the email was generated it only contained the hard coded recipient. Preview of the notification using an existing event also only showed the hard coded recipient. The email log did not show any excluded email addresses. The user is active and has a valid primary email channel defined in the cmn_notif_device table.CauseThere were 2 events registered with the same name. Returned the correct sys_id as parm1.Returned a string for parm1 The notification was being triggered by the event which returned a string and thus parm1 did not reference a user.ResolutionRename the event to avoid conflict with pre-existing event that did not return the sys_id in parm1.Edit the accompanying Business Rule to call this new renamed event.Edit the notification to be triggered by this new event.