How should i add space in the mailscript
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-10-2021 04:12 AM
Hi ,
how to add the space in the following script line in the notification mail script :
template.print(' The request to add/remove access for '+current.variables.requested_for.first_name+' has been processed.');
In the above script , i want to add the space in the beginning of the sentence i.e. before "The".
Any leads is highly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2022 11:12 AM
As of release Rome, you can try the following:
template.space(1);
template.print('The request to add/remove access for '+current.variables.requested_for.first_name+' has been processed.');
You may have already solved it, but this will work.
Hope it helps!