I am using the following to query, this is used via database mail to send emails.is it possible to make the hardcoded field names to appear in bold?Here is the query: For Example - Title:, Document Date:, From: to appear in boldSelect rcp.Email, getdate(), ''Title: '' + rtrim(m.rmtitle) + char(13) +''Document Date: '' + rtrim(isnull(CONVERT(varchar(10),m.DocumentDate,101),'''')) + char(13) + ''Recv Date: '' + rtrim(isnull(CONVERT(varchar(10),m.ReceivedDate,101),'''')) + char(13) + ''From: '' + rtrim(isnull(m.OrigSender,'''')) + char(13)+ ''Organization: '' + rtrim(isnull(m.OrigOrganization,'''')) + char(13)+ ''To: '' +'+ @SQLField +' + char(13)+ ''Distribution Date: '' + rtrim(isnull(CONVERT(varchar(10),rcp.sentdate,101),'''')) + char(13) + char(13)+ ''Module: '' + rtrim(rcp.MODULENAME) + char(13) + ''Program: '' + pg.progno + '' - ''+ pg.progname + char(13) + ''Project: '' + pj.projno + '' - '' + pj.projname + char(13) + ''Contract: '' + ct.contractno + '' - '' + ct.contractname + char(13) + ''Log: '' + rtrim(isnull(ltype.englishtext,'''')) + char(13)+ ''Sequence: '' + rtrim(isnull(m.SequenceNO,'''')) + char(13)+char(13) + ''Created/Modified By: '' + rtrim(isnull(m.UpdatedBy,'''')) + char(13) + ''Link To Record: http://'+ @mySite +'.mygroup.com/pcNewlogin.aspx?mktrte=srkc&gmd=' + rtrim(@ModuleName) + '&gidk=' + convert(nvarchar(50), @ModuleID) + ' ''as body,
Thank you very much for the helpful info.