格式 msdb.dbo.sp_send_dbmail
Format msdb.dbo.sp_send_dbmail
--SQL格式
Declare @body As nvarchar(max)=N'<HTML>'
+N'<p>Hi '+@userId+'</p>New amendment for act <b>'+@title+'</b> is added'
+N'<p>This amendment include changes to the Section: <b>'+@sectionid+'</b> and Title: <b>'+@title+'.</b></p>'
+N'<p>You are receiving this message because you have added change alert notification on Section: <b>'+@sectionid+'.</b></p>'
+N'</HTML>'
在接收电子邮件
<HTML><p>Hi zubairpayab</p>New amendment for act <b>Amendment of section 2C</b> is added<p>This amendment include changes to the Section: <b>2</b> and Title: <b>Amendment of section 2C.</b></p><p>You are receiving this message because you have added change alert notification on Section: <b>2.</b></p></HTML>
你能帮我改一下格式吗
您需要在调用 sp_send_dbmail
时将 Body 格式指定为 HTML
EXEC dbo.sp_send_dbmail @profile_name = 'MyMailProfile',
@recipients = 'receiver@gmail.com',
@copy_recipients = 'cc@gmail.com',
@body = 'HTML Body Content',
@body_format = 'HTML',
@subject = 'My Mail Subject';
--SQL格式
Declare @body As nvarchar(max)=N'<HTML>'
+N'<p>Hi '+@userId+'</p>New amendment for act <b>'+@title+'</b> is added'
+N'<p>This amendment include changes to the Section: <b>'+@sectionid+'</b> and Title: <b>'+@title+'.</b></p>'
+N'<p>You are receiving this message because you have added change alert notification on Section: <b>'+@sectionid+'.</b></p>'
+N'</HTML>'
在接收电子邮件
<HTML><p>Hi zubairpayab</p>New amendment for act <b>Amendment of section 2C</b> is added<p>This amendment include changes to the Section: <b>2</b> and Title: <b>Amendment of section 2C.</b></p><p>You are receiving this message because you have added change alert notification on Section: <b>2.</b></p></HTML>
你能帮我改一下格式吗
您需要在调用 sp_send_dbmail
时将 Body 格式指定为 HTMLEXEC dbo.sp_send_dbmail @profile_name = 'MyMailProfile',
@recipients = 'receiver@gmail.com',
@copy_recipients = 'cc@gmail.com',
@body = 'HTML Body Content',
@body_format = 'HTML',
@subject = 'My Mail Subject';