TSQL msdb.dbo.sp_send_dbmail - 如何添加电子邮件签名?

问题描述 投票:0回答:0

使用 MS SSMS v18.x,下面的代码通过电子邮件向特定收件人发送自定义主题和正文。

如何包含 Outlook 签名?

declare @body nvarchar (max) = 'Body goes here'
Execute msdb.dbo.sp_send_dbmail
@recipients = '[email protected]', 
@body=@body,
@body_format = 'HTML',
@subject='TEST Subject'

我在 MS 页面 或任何其他 Google 搜索结果中找不到任何内容。

sql-server ssms
© www.soinside.com 2019 - 2024. All rights reserved.