我格式化sp_send_dbmail以HTML格式发送电子邮件.但它正在发送带有HTML代码的邮件.
以下是我使用的代码
EXEC msdb.dbo.sp_send_dbmail @recipients=N'*****@********.com',@body= '<font color="green" face="arial"><i> Testing<br /> </i></font><hr />',@subject = 'sql Server Trigger Mail',@profile_name = 'DBMailProfile1'
解决方法
你也必须指定@body_format =’HTML’.默认值为TEXT.
请参阅MSDN上的sp_send_dbmail:还有HTML示例