How can I prevent encoding within the body of an email sent using SQL Server's sp_send_dbmail
?
Example:
EXEC msdb.dbo.sp_send_dbmail
@recipients='[email protected]',
@subject = 'SQL email test',
@body = 'this+that',
@body_format = 'HTML'
The html source of the email that I receive looks like this:
this`+`that
and the body looks fine:
this+that
However, what if I want the SOURCE to still have the + instead of the +
?
Long back story on why I need to do this, but solving this would help me immensely. Is there a way to "escape" the + in my body parameter? Or any other idea on how to prevent this encoding?
You can try doing a simple XML hack:
Returns
This will not however remove your backticks. You can add a call to
REPLACE
if needed:Which results in: