我sp_send_dbmail
在 SQL Server 2008 中使用来发送 HTML 电子邮件。我可以使用 url 引用图像<img src="http:..." />
我已将图像与@file_attachments
. 如何在附件中引用此图像?
我sp_send_dbmail
在 SQL Server 2008 中使用来发送 HTML 电子邮件。我可以使用 url 引用图像<img src="http:..." />
我已将图像与@file_attachments
. 如何在附件中引用此图像?
EXEC msdb.dbo.sp_send_dbmail
@recipients = 'xxx@yyy.com',
@subject = 'test',
@file_attachments = 'C:\Test\Image.gif;C:\Test\Image2.gif',
@body=N'<p>Image Test</p><img src="Image.gif" /><p>See image there?</p>',
@body_format = 'HTML';
这是我使用的确切代码,它对我来说效果很好。
EXEC msdb.dbo.sp_send_dbmail
@recipients = 'xxx@wxxxx.com',
@subject = 'test',
@profile_name = 'global config',
@file_attachments = 'C:\testimage.png',
@body=N'<p>Image Test</p><img src="testimage.png" /><p>See image there?</p>',
@body_format = 'HTML';