NickCraver/StackExchange.Exceptional

Doesn't send emails, also cannot specify application name

AuthorProxy opened this issue · 6 comments

ASP.NET core 2.1

            services.AddExceptional(options =>
            {
                options.DefaultStore.Settings.ApplicationName = "Business Trips API";
                options.Email.FromDisplayName = "StackExcange.Exceptional";
                options.Email.FromAddress = "xxx@xxx.ru";
                options.Email.ToAddress = "xxx@xxx.ru";
                options.Email.SMTPHost = "smtp.yandex.com";
                options.Email.SMTPPort = 465;
                options.Email.SMTPUserName = "xxx@xxx.ru";
                options.Email.SMTPPassword = "xxxxx";
            });

Which version are you using?

2.0.0-rc2.28

The email will need some debug, can you clarify what "also cannot specify application name" means?

@AuthorProxy any update here?

I will check again soon

I see what the issue is here from another report - see #183 for an example of how to do this when doing a manual config. I'll see about automating this more.