sql – sp_send_dbmail中的HTML格式

前端之家收集整理的这篇文章主要介绍了sql – sp_send_dbmail中的HTML格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我格式化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示例

原文链接:https://www.f2er.com/mssql/83341.html

猜你在找的MsSQL相关文章