- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 01:11 AM - edited 02-23-2023 01:17 AM
Hi,
I'd like the description field of the incident form to be auto populated based on the body of the email which the incident is created from.
How do I go about this?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 02:09 AM
Hi @JordyZ
you can write below code in inbound email
current.description = email.body_text;
If my answer solved your issue, please mark my answer as ✅Correct & 👍Helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 03:40 AM - edited 02-23-2023 03:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 03:58 AM
Hi @JordyZ
ya, it can be empty but it is again based on your requirement.
Please mark answer as correct if it resolved your issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 04:00 AM
Hi @priyasunku ,
The requirement is: when an incident is created from email. Just double-checking that this means conditions can be empty. Thanks once again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 04:12 AM
yes conditions and field actions can remain empty as of now. Also we have an OOB 'create incident' inbound action you can refer or utilize that if required
If my answer solved your issue, please mark my answer as ✅Correct & 👍Helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2023 05:54 AM
Hi @priyasunku ,
I've tested the new inbound email action with "current.description = email.body_text;" but the description doesn't get auto populated with the email body. Any idea what I did wrong?