我正在尝试使用 SQL Server 2005 中的 sp_send_dbmail 发送附件。我首先编写了一个 CLR 存储过程,将一些内容保存到服务器上的文件中,然后调用下面列出的存储过程,然后删除它创建的文件。我从我的 ASP.NET 2010 应用程序中调用此 CLR 存储过程。在本地,此功能在 SQL Management Studio 和我的应用程序中都有效。
这是我的 CLR 存储过程中的基本内容:
public static void SendExportAttachment(string email, string fileContents, string mailProfile, string temporaryFileName)
{
// First save the file to the file system
StreamWriter sw = new StreamWriter(temporaryFileName);
sw.Write(fileContents);
sw.Close();
sw = null;
// Execute the SendExportResultEmail (see below)
using (SqlConnection connection = new SqlConnection("context connection=true"))
{
connection.Open();
SqlCommand command = new SqlCommand("SendExportResultEmail", connection);
command.CommandType = System.Data.CommandType.StoredProcedure;
command.Parameters.Add(new SqlParameter("@ProfileName", mailProfile));
command.Parameters.Add(new SqlParameter("@Recipients", email));
command.Parameters.Add(new SqlParameter("@TemporaryFileName", temporaryFileName));
command.ExecuteNonQuery();
}
// Remove the file from the file system
File.Delete(temporaryFileName);
}
这是发送电子邮件的存储过程:
CREATE PROCEDURE [dbo].[SendExportResultEmail]
@ProfileName NVARCHAR(50)
,@Recipients NVARCHAR(100)
,@TemporaryFileName NVARCHAR(2000)
AS
SET NOCOUNT ON
DECLARE @ErrorID INT
DECLARE @RtnCode INT
DECLARE @Body VARCHAR(8000)
DECLARE @Subject VARCHAR(1000)
DECLARE @mailitem_id INT
SET @Body = 'Some Body'
SET @Subject = 'Some title'
EXEC @RtnCode = msdb.dbo.sp_send_dbmail
@profile_name = @ProfileName
,@recipients = @Recipients
,@body = @Body
,@subject = @Subject
,@body_format = 'TEXT'
,@file_attachments = @TemporaryFileName
,@mailitem_id = @mailitem_id OUTPUT
SET @ErrorID = @@ERROR
IF @RtnCode <> 0 BEGIN
SELECT @ErrorID
END
在本地成功测试此代码作为我的应用程序的一部分后,我将其移至我们的测试服务器。在测试服务器上,当我从 Management Studio 执行 CLR sproc 时,它成功发送了邮件。但是,当我从我的 ASP.NET 应用程序执行它时,我从 msdb.dbo.sp_send_dbmail 的返回码是 1,而 @@ERROR 是 0 - 我没有收到其他错误。我知道在 SQL 2008 中我可能会得到一个更有帮助的@@ERROR 代码,至少根据 2008 年的文档。
有人有什么建议吗?你觉得我可能做错了什么?
非常感谢提前,吉姆