Im Looking to create a email that will have 3 tables aswell as some text as the body. I was thinking of declaring a variable and then building it up. Something like this...
SET @MESSAGE = 'Intro Text' +
SELECT * FROM ORDERS +
'Other Text'
etc..
I was just wondering if this was possible and if so what is the syntax. Ive been playing about but so far without any luck.
Thanks in advance
Nigel
SET @MESSAGE = 'Intro Text' +
SELECT * FROM ORDERS +
'Other Text'
etc..
I was just wondering if this was possible and if so what is the syntax. Ive been playing about but so far without any luck.
Thanks in advance
Nigel