mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
smtp fixes
This commit is contained in:
parent
15e69a529e
commit
1ab815dbb8
@ -22,8 +22,7 @@ namespace Bit.Core.Services
|
||||
|
||||
public Task SendEmailAsync(Models.Mail.MailMessage message)
|
||||
{
|
||||
using(var client = new SmtpClient(_globalSettings.Mail.Smtp.Host, _globalSettings.Mail.Smtp.Port))
|
||||
{
|
||||
var client = new SmtpClient(_globalSettings.Mail.Smtp.Host, _globalSettings.Mail.Smtp.Port);
|
||||
client.UseDefaultCredentials = false;
|
||||
client.EnableSsl = _globalSettings.Mail.Smtp.Ssl;
|
||||
client.DeliveryMethod = SmtpDeliveryMethod.Network;
|
||||
@ -57,11 +56,11 @@ namespace Bit.Core.Services
|
||||
client.SendCompleted += (s, e) =>
|
||||
{
|
||||
smtpMessage.Dispose();
|
||||
client.Dispose();
|
||||
};
|
||||
|
||||
client.SendAsync(smtpMessage, null);
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -397,7 +397,7 @@ globalSettings__mail__smtp__host=REPLACE
|
||||
globalSettings__mail__smtp__username=REPLACE
|
||||
globalSettings__mail__smtp__password=REPLACE
|
||||
globalSettings__mail__smtp__ssl=true
|
||||
globalSettings__mail__smtp__port=465");
|
||||
globalSettings__mail__smtp__port=587");
|
||||
|
||||
if(!_push)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user