C#-无法发送电子邮件,通过多个dll调用

本文关键字:dll 调用 电子邮件 C#- | 更新日期: 2023-09-27 18:20:34

我有3个dll:

  • 我的asp.net应用程序
  • 蒸汽api管理器
  • 通知管理器[Notifications.dll]

我需要计算steam api请求(每天限制在10万),在一天结束时,我想发送关于我每天总请求的电子邮件。

    //My aspnet app global.asax
    protected void Application_Start(Object sender, EventArgs e)
    {
        Steam.RequestCounter.Run();        
    }
    //Steam.dll
    public static void Run()
    {
       // .. request count logic
        Notifications.SendEmail();
    }
    //Notifications.dll
    public static void SendEmail()
    {
       //..email sending logic
    }

如果调用堆栈如上图所示,则不发送电子邮件。为什么?如果我直接从我的asp.net应用程序(global.asax)调用Notifications.SendEmail()方法,它就可以工作了。你能解释一下发生了什么事吗?

编辑

呼叫过程中没有错误。SmtpClient.Send()方法正常通过。即使我把它放入try,catch块,也没有出现异常。

这是我的Notifications.SendEmail方法:

    public static void SendEmail(string subject, string body, params string[] recipients)
    {
        const string sender = "xxxx@outlook.com";
        var client = new SmtpClient("smtp-mail.outlook.com")
        {
            Port = 587,
            DeliveryMethod = SmtpDeliveryMethod.Network,
            UseDefaultCredentials = false
        };
        var credentials = new System.Net.NetworkCredential(sender, "xxxx");
        client.EnableSsl = true;
        client.Credentials = credentials;
        var mail = new MailMessage {From = new MailAddress(sender)};
        foreach (var recipient in recipients)
        {
            mail.To.Add(recipient);
        }
        mail.Subject = subject;
        mail.Body = body;
        client.Send(mail);
    }

这是发送电子邮件时的场景(在global.asax内部):

    protected void Application_Start(Object sender, EventArgs e)
    {
        //call directly to Notifications.dll
        Email.SendEmail(
            "subject",
            "body",
            "xxx@outlook.com"
        );        
    }

这是不发送电子邮件的情况:

    protected void Application_Start(Object sender, EventArgs e)
    {
        //call to Steam.dll
        Steam.RequestCounter.Run();        
    }
    //Inside Steam.dll
    public static void Run()
    {
        SendEmail();
    }
    private static void SendEmail()
    {
        //call to Notifications.dll
        Email.SendEmail(
            "subject",
            "body",
            "xxx@outlook.com"
        ); 
    }

所以问题不在请求计数逻辑中。我认为问题出在参考资料上。也许主机环境(asp.net应用程序)不具备发送电子邮件所需的一切。如果没有出现错误,我不知道如何检查。

C#-无法发送电子邮件,通过多个dll调用

global.asax中的函数将在启动应用程序时调用一次。因此,如果没有发生回收或部署,它将在周一运行,再也不会运行。您需要一些时间触发器、调度程序、服务或类似的东西