- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 08:35 AM
I need to send incident number, short description, and state value as object through event queue but i need to use these values inside the notification body at different places.
How can i do?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 07:54 PM
you can do that by creating multiple email script call them at different part of the email body
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 08:49 AM
Hi @Manikantahere ,
it should work
Have you fired the event ? or you are just previewing the notification?
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 08:52 AM
I am getting nothing in notification.
is that correct way to use values in notification body.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 09:08 AM
if you have created notification email script call it in the notification with ${mail_script:Your_email_script_name}
you can directly call event.parm1,event.parm1 in the notification email script it will have access to event object
if you want to involve the event param value directly in the notification message use it like this
${event.parm1} ${event.parm2}
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2024 09:11 AM
actually I have 3rd parameter to send but as I can't send through event queue so want to store them inside object and sending it through event queue, want to processing them assigning to different variables to use them in notification body.