我目前正在使用 T-SQL 从存储过程中发送带有附件的电子邮件:
EXEC @return_status = msdb.dbo.sp_send_dbmail
@profile_name = 'ProfileName',
@recipients = @recipients,
@body = @mailbody,
@subject = @subject,
@file_attachments = @full_attachment_filename
我想在发送的电子邮件上设置一个自定义标题。sp_send_dbmail
有没有办法使用存储过程来做到这一点?
更多信息:SQL 服务器版本是 2005,它通过 Microsoft Exchange 服务器 (2003) 发送电子邮件。