- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2014 11:26 PM
Hello,
I have included CMS link in Notification which redirects me to a public page.
Below is the line included in my Notification Message.
${CMS_URI+armspublic/UserCreation2nSignupPublicPage}
where "armspublic" is my site name and "UserCreation2nSignupPublicPage"
It is displaying as LINK in my Email Content.
I have a requirement to change this text "LINK" to "Click here".
How can we change this?
Can any one help me on this.
Thanks,
Pavan.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:11 AM
var instanceURL = gs.getProperty("glide.servlet.uri");
instanceURL = instanceURL + "armspublic/";
var ui_pagename = 'Your ui page name';
var cmspage = encodeURIComponent(ui_pagename);
var url = instanceURL + cmspage+'.do?sysparm_document_key=' +u_user_information+'sys_id='+current.sys_id;
Regards,
Harish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:02 AM
Hello Harish,
For more Information, My link should be as below
Thanks,
Pavan

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:06 AM
did you see my comment? add your url parameters to that