1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

add support for postal and multi service mail delivery (#1326)

* adds suppose for postal and multi service mail delivery

* adjust tags

* dont need settings checks in multi-service
This commit is contained in:
Kyle Spearrin
2021-05-13 15:18:42 -04:00
committed by GitHub
parent 571862a7ac
commit b150f5977e
4 changed files with 173 additions and 2 deletions

View File

@ -275,6 +275,9 @@ namespace Bit.Core.Settings
public string ReplyToEmail { get; set; }
public string AmazonConfigSetName { get; set; }
public SmtpSettings Smtp { get; set; } = new SmtpSettings();
public string PostalDomain { get; set; }
public string PostalApiKey { get; set; }
public int? PostalPercentage { get; set; }
public class SmtpSettings
{