Hey there I have a simple EmailTemplate table with three columns:
TemplateName
EmailSubject
EmailContent
I have a client that wants to review all the templates and I'd like to put them into a word document, 1 per page, in the order they are above e.g.
-------------- page 1 --------------
[[TemplateName]]
[[EmailSubject]]
[[EmailContent]]
...
...
...
[[EmailContent]]
-------------- page 2 --------------
[[TemplateName]]
[[EmailSubject]]
[[EmailContent]]
...
...
...
[[EmailContent]]
Does anyone one know of an easy way to do this from SQL Server Management Studio?
Cheers Rob