Setting up autoreply for emails sent to Service-Now mailbox
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2014 05:04 PM
Hi All
Is there a way to setup an autoreply text for emails sent to my organizations Service-Now mailbox, only to respond to emails sent from an internal email address?
Is there a way where an inbound email doesn't create a record but still produce an autoreply?
Many Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2016 09:39 AM
Perfect it works . Thanks Alan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2016 04:54 AM
Hi Alan, the code you suggested works and stop creation on inbound action and sends an automated reply back.
However, there is another inbound action that processes the FW replies to create tickets. This inbound action does still creates tickets for the internal users. Do you know why this happening even though I have following on the inbound action on the sys_table. Is there a way we can stop ticket creation fro FW inbound action.
event.state="stop_processing";
Thank you very much!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2016 05:16 AM
I have created a similar inbound action sys_email table with Type as 'Forward' and it seems to be working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2016 05:48 AM
The other inbound action must have a lower Order number then, right? If you want the email to go out instead of a ticket being created, make sure the inbound action that creates the email has a lower Order than the ticket-creation one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2016 05:50 AM
Yes, the order is lower (10) than the other one which is 100.
Thanks Alan!