Teams UI Macro Working Not properly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2024 06:11 AM
I have created UI Macro for teams integration it is working fine but whenever click the web teams app then it is showing message twice and whenever click the teams app then working fine
UI Macro script :
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2024 12:26 AM
try this once and let me know:
var subject = 'message=Hi ' + encodeURIComponent(firstname) +
', this is regarding your Incident ' + encodeURIComponent(g_form.getValue('number')) +
': ' + encodeURIComponent(g_form.getValue('short_description'));
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2024 12:43 AM
Now not showing any message in teams chat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2024 12:47 AM
please let me know - are you processing string in the URL or the form submission context?
also try once with :
var subject = 'message=Hi ' + firstname + ', this is regarding your Incident ' + g_form.getValue('number') + ': ' + g_form.getValue('short_description');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2024 10:37 PM
Not working ,pls check below code: