mirror of
https://github.com/bitwarden/server
synced 2025-12-16 00:03:54 +00:00
SmtpMailDeliveryService
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user