Reputation: 39
I want to be able to add an automatic paragraph between mergefields in mailmerge. The words of the merge fields are written together with no space between them. how do I format it in this way?
Upvotes: 0
Views: 284
Reputation: 1233
If you have two consecutive mergefields looking like <<field1>> <<field2>>
couldn't you just do something like:-
document.merge(field1='your field1 text here\n', field2='your field2 text here')
The \n will insert the newline at the end of field1.
Upvotes: 0