Doesn't send emails, also cannot specify application name
AuthorProxy opened this issue · 6 comments
AuthorProxy commented
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";
});
stijnherreman commented
Which version are you using?
AuthorProxy commented
2.0.0-rc2.28
NickCraver commented
The email will need some debug, can you clarify what "also cannot specify application name" means?
NickCraver commented
@AuthorProxy any update here?
AuthorProxy commented
I will check again soon
NickCraver commented
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.