Question : sp_send_dbmail email query contained in the body of the email (HTML table)

I'm currently sending an email using the sp_send_dbmail stored procedure,

I am using the @query param to send a query of data in the body of the email,

What i want to do is send the email in HTML format and have the queryed data in a HTML table,

How would i do this,

I have attached the code i am using
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
EXEC msdb.dbo.sp_send_dbmail
@profile_name = '1',
@blind_copy_recipients = '[email protected]',
@subject = '',
@body= '',
@query = 
'SELECT d.warehouse,d.order_line_no AS Line,d.product AS Product ,d.qty_ordered AS QTY ,CONVERT(NUMERIC(18,0),(sum(d.qty_ordered*d.cost_price_u))) AS Cost,d.long_description AS Detailed
FROM scheme.poheadm_alerts i with (NOLOCK)
JOIN scheme.podetm d with (NOLOCK)
ON i.order_no=d.order_no
WHERE i.Sent = "N"
GROUP BY d.order_line_no,d.product,d.qty_ordered, d.warehouse,d.long_description', 
@execute_query_database = 'demo'
Open in New Window Select All

Answer : sp_send_dbmail email query contained in the body of the email (HTML table)

great....swap this out at the end

select @html
set @html = '<html><table border = 1><tr><td>warehouse</td><td>line</td><td>product</td><td>qty</td><td>cost</td><td>detailed</td></tr>' + @html + '</table></html>'
Random Solutions  
 
programming4us programming4us