How should i add space in the mailscript

Naresh291
Tera Contributor

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.

20 REPLIES 20

Robert Hames
Giga Expert

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!