mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Services.Stores;
|
|
|
|
namespace BTCPayServer.Services.Mails
|
|
{
|
|
class StoreEmailSender : EmailSender
|
|
{
|
|
public StoreEmailSender(StoreRepository storeRepository,
|
|
EmailSender fallback,
|
|
IBackgroundJobClient backgroundJobClient,
|
|
string storeId) : base(backgroundJobClient)
|
|
{
|
|
if (storeId == null)
|
|
throw new ArgumentNullException(nameof(storeId));
|
|
StoreRepository = storeRepository;
|
|
FallbackSender = fallback;
|
|
StoreId = storeId;
|
|
}
|
|
|
|
public StoreRepository StoreRepository { get; }
|
|
public EmailSender FallbackSender { get; }
|
|
public string StoreId { get; }
|
|
|
|
public override async Task<EmailSettings> GetEmailSettings()
|
|
{
|
|
var store = await StoreRepository.FindStore(StoreId);
|
|
var emailSettings = store.GetStoreBlob().EmailSettings;
|
|
if (emailSettings?.IsComplete() == true)
|
|
{
|
|
return emailSettings;
|
|
}
|
|
return await FallbackSender.GetEmailSettings();
|
|
}
|
|
}
|
|
}
|