1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 00:03:54 +00:00

SmtpMailDeliveryService

This commit is contained in:
Kyle Spearrin
2017-05-30 22:40:02 -04:00
parent 07c5f45ae0
commit 0ee863c1d0
4 changed files with 68 additions and 6 deletions

View File

@@ -27,8 +27,18 @@
public class MailSettings
{
public string ApiKey { get; set; }
public string ReplyToEmail { get; set; }
public string SendGridApiKey { get; set; }
public SmtpSettings Smtp { get; set; } = new SmtpSettings();
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; }
public bool Ssl { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}
public class PushSettings