Hi
We have a stored procedure that send text via email.
What we would like to do (if possible) is make part of the text stand out somehow perhaps in BOLD. I have out some spaces in between the fields so it is easier to read, but would like the @Q to stand out more.
SET @Message = @Message + CONVERT(varchar(12),@Inv) + ' ' + CONVERT(varchar(20),@InvDate) + ' ' + CONVERT(varchar(20),@Q) + ' ' + CONVERT(varchar(20),@A) + ' ' + @Desc + CHAR(13)
Any ideas please
Thanks
We have a stored procedure that send text via email.
What we would like to do (if possible) is make part of the text stand out somehow perhaps in BOLD. I have out some spaces in between the fields so it is easier to read, but would like the @Q to stand out more.
SET @Message = @Message + CONVERT(varchar(12),@Inv) + ' ' + CONVERT(varchar(20),@InvDate) + ' ' + CONVERT(varchar(20),@Q) + ' ' + CONVERT(varchar(20),@A) + ' ' + @Desc + CHAR(13)
Any ideas please
Thanks