c# -将保存在数据库中的文件附加到电子邮件

本文关键字:文件 电子邮件 保存 存在 数据库 | 更新日期: 2023-09-27 18:03:06

如何将保存在MS SQL数据库中的一个或多个文件添加到电子邮件中?我已经知道如何附加保存在目录或fileUpload控件中的文件。

我的数据字段如下:

col1: Email_ID - int

file_name - varchar

col3: file_content - image

所以我的SQL select语句很简单:
Select file_name, file_content from Attachments where Email_ID = 333

我只是不知道如何把它们附加到我的电子邮件中。

谢谢!

c# -将保存在数据库中的文件附加到电子邮件

  SqlCommand cmdSelect=new SqlCommand("Select file_name, file_content " + 
              " from Attachments where Email_ID=@ID",this.sqlConnection1);
        cmdSelect.Parameters.Add("@ID",SqlDbType.Int,4);
        cmdSelect.Parameters["@ID"].Value=333;
DataTable dt = new DataTable();
        this.sqlConnection1.Open();
        SqlDataAdapter sda = new SqlDataAdapter();
            sda.SelectCommand = cmdSelect;
            sda.Fill(dt);
     if(dt.Rows.Count > 0)
{
        byte[] barrImg=(byte[])dt.Rows[0]["file_content"];
        string strfn= "Your File Directory Path" + Convert.ToString(dt.Rows[0]["file_name"]);
        FileStream fs=new FileStream(strfn, 
                          FileMode.CreateNew, FileAccess.Write);
        fs.Write(barrImg,0,barrImg.Length);
        fs.Flush();
        fs.Close();
   //now you can attache you file to email here your file is generate at path stored in "strfn" variable
}

参考资料:http://www.codeproject.com/KB/database/ImageSaveInDataBase.aspx

从SQL获取图像,将其转换为流,然后创建附件到您的电子邮件。示例:Attachment(Stream, String)使用指定的Stream和name初始化Attachment类的一个新实例。