SQL发送html邮件
exec msdb.dbo.sp_send_dbmail
@profile_name = null, --配置名称
@recipients = 'sarah.gou@arvato.com', --收件名称
@body_format = 'HTML', --内容格式
@subject = '文章标题',
@body = '<!DOCTYPE html>‘
exec msdb.dbo.sp_send_dbmail
@profile_name = null, --配置名称
@recipients = 'sarah.gou@arvato.com', --收件名称
@body_format = 'HTML', --内容格式
@subject = '文章标题',
@body = '<!DOCTYPE html>‘