- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2022 10:52 PM
Hi,
I have to allow more than one email address those can send emails to ServiceNow instance.
I'm working on inbound action and I want to allow multiple domains hat can send emails to my ServiceNow instance and I want to create multiple email account for my ServiceNow instance.
Can anyone please tell me how we can achieve.
Regards,
Nivedita
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2022 06:34 AM
Hi All,
We can achieve it by using email address filter.
1. Create Email Address filter and add that domain name in domains field that you want to allow
and add domain name in exceptions which you don't want to allow.
2. Create System Address filter and add this Email Address filter in that.
3. Open POP3 Email Account and add System Address filter in that.
Please see screenshot to achieve it :
Hope this helps to everyone.
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2022 12:16 AM
I said for first requirement, second is possible and can be achieved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2022 12:28 AM
Can you please tell me step by step that how we can achieve second requirement.
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2022 12:34 AM
You can create a sys_property and there you can store all the domains you would want to receive mail from, and call that property later in your inbound and check for that particular domain in your property and proceed from there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2022 01:25 AM
Thank you so much for your reply.
I have created sys property in instance
Please correct me if I'm doing anything wrong.
How we can call sys property in inbound action.
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2022 01:32 AM
yes you are doing right, you can call system property in inbound by using:-
gs.getProperty('allow_domains');