Sending Mail Using Mail Merge

Should be publishing a merge document to query server component tomorrow.
Have it working, just cleaning up and tweaking.

Allows embedded field names like this

Hi, [name]  - your record is number is [people_id]

and a query such as this with output:

{ people_id: 1, name: 'Brian English' }

are merged to output:

Hi, Brian English - your record number is 1

All field mapping is done automatically by matching [tag] to fieldname.
Can be used singly or inside a repeat.

text can be $_ variable, dynamic value (e.g. summernote output) or static

2 Likes