为什么即使路径正常,电子邮件也不会发送

时间:2016-01-28 05:06:02

标签: c# asp.net-mvc mail-sender

这是一段生成邮件的代码,直到我没有将路径作为参数附加。问题是如果我附加路径它没有抛出任何错误(没有日志)。只是页面开始没有响应,调试器甚至没有跳转到下一行。 任何帮助都会帮助我理解我的错误。感谢

public ActionResult Mailsending(string list)
      {
        try
        {
            string strIdeas = string.Empty;
            string Certpath =  System.Configuration.ConfigurationManager.AppSettings["UploadPath"];
            List<int> list = new List<int>();
            List<string> pramAttachment = new List<string>();              
            pramAttachment.Add(Server.MapPath(Certpath) + "MyPdf.pdf"); ///Path of the generated pdf.
            Submitidlist = new CommonBL().GetSubmiidListForGenerateMail();

            new CommonBL().UpdateIsGenerateStatus(ideaidlist, UserID);

            foreach (var item in ideaidlist)
            {
                strIdeas = strIdeas + item.ToString() + ",";
            }
            GenerateMyPDF(list); //Here pdf is generating

            string path = GenerateMail(strIdeas.TrimEnd(','));

            if (path != string.Empty)
            {
                new CommonBL().AddGenerateImagePath(path, UserId);
                new MailSender().SendMail((int)eMailType.GenerateMail, null, pramAttachment); // here path is added as parameter,and after this debugger not jump out of this scope.

            }               
            return Json("Mail generated Successfully."); ///no message showing

        }
        catch (Exception ex)
        {
            return Json("Error");
        }
    }

编辑:       公共类MailSender:IDisposable     {      public bool SendMail(short mailId,List&gt; parameters,List attachmentsPath = null);     }

2 个答案:

答案 0 :(得分:0)

可能仍然锁定生成的PDF,因此MailSender无法访问它,因为该独占锁定。您可以发送包含以前生成的文件的电子邮件吗?

答案 1 :(得分:0)

添加一个显然也是这个问题的答案的一点是: 调试整个代码后,我发现我的smtp服务器不允许向我发送邮件,所以即使上面的代码是正确的,它也会显示处理。 因此,如果任何人使用上述代码将工作正常。

更新:现在从控制面板配置我的邮件服务后它可以正常工作。因此,如果任何人想要参考,可以继续。代码很好。