- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 hours ago - last edited 10 hours ago
Hi SN folks,
I'm observing this behavior in my recent Zurich release instance,
Scenario: While sending email to a user in Users table, while the user is inactive. But the same is sending in non Zurich release instances
Description: I'm triggering an email via widget server side,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8 hours ago
Hi @Anil9866,
Even though you are passing a raw email string (e.g., user@domain.com) in your gs.eventQueue parameters, the ServiceNow Email engine automatically looks up that email address in the sys_user table. If it finds a matching user record that is inactive, and the system is configured to ignore inactive users, it will drop the email with the "excluded recipients" error
You need to check/update a specific System Property that controls this behavior.
Note: If you are on a new release like Zurich, security settings are often hardened by default, which is why this property may be enforcing the restriction now where it wasn't before.
If you find my response helpful, mark it as helpful and accepted solution.
Regards,
Maham Tahir.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
6 hours ago
Hey @JenniferRah, thanks for looking into the query.
Here my expectation is not sending mail to inactive users, but more focused on why it is delivering when done via Email script, why it shouldn't delivered when configured via Email notification. Hope I'm making sense.