0

我的网站上有反馈表,我<input type="file">的表单中也有,所以有时需要在电子邮件中添加附件。
<input type="file">以我的形式创建

 @Html.TextBoxFor(model => model.ProjectInformation, null, new { type = "file", @class = "input-file" }) 

然后在我的控制器中创建电子邮件并尝试添加附件

    [HttpPost]
    public ActionResult Feedback(FeedbackForm Model)
    {
        System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();
        msg.BodyEncoding = Encoding.UTF8;

        msg.From = new MailAddress("test@mail.ru", @Resources.Global.Feedback_Email_Title);
        msg.To.Add("tayna-anita@mail.ru");

        string message = @Resources.Global.Feedback_Name + ": " + Model.Name + "\n"
                        + @Resources.Global.Feedback_Email + ": " + Model.Email + "\n"
                        + @Resources.Global.Feedback_Phone + ": " + Model.Phone + "\n"
                        + @Resources.Global.Feedback_Company + ": " + Model.Company + "\n\n"
                        + Model.AdditionalInformation;
        msg.Body = message;
        msg.IsBodyHtml = false;

        //Attachment
        if (Model.ProjectInformation != null)
        {
            HttpPostedFileBase attFile = Model.ProjectInformation;
            int attachFileLength = attFile.ContentLength;
            if (attachFileLength > 0)
            {
                string strFileName = Path.GetFileName(Model.ProjectInformation.FileName);
                Model.ProjectInformation.SaveAs(Server.MapPath(strFileName));
                Attachment attach = new Attachment(Server.MapPath(strFileName));                   
                msg.Attachments.Add(attach);
                string attach1 = strFileName;
            }
        }

        SmtpClient client = new SmtpClient("smtp.mail.ru", 25);
        client.UseDefaultCredentials = false;
        client.EnableSsl = false;

        try
        {
            client.Send(msg);
        }

        catch (Exception ex)
        {
        }

        FeedbackForm tempForm = new FeedbackForm();
        return View(tempForm);
    } 

但我想我需要在发送后删除附件,我尝试在这里添加代码

        try
        {
            client.Send(msg);
            if (attach1 != null)
            File.Delete(Server.MapPath(attach1));
        }

但我有一些错误

在此处输入图像描述

在此处输入图像描述

我应该怎么做才能解决这个问题?

4

1 回答 1

1

您应该在之前声明一个变量if (Model.ProjectInformation != null)

像这样的东西:

    string attach1;
    if (Model.ProjectInformation != null)
    {
        . . .
        if (attachFileLength > 0)
        {
            . . .
            attach1 = strFileName;
        }
    }
于 2013-05-22T12:28:20.317 回答