2025-05-06 06:45:49 +00:00
|
|
|
|
using Volo.Abp.Emailing;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Sender.Mail.AmazonSes;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Defines configurations used while sending emails.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IAmazonSesEmailSenderConfiguration : IEmailSenderConfiguration
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<string> GetProfileAsync();
|
|
|
|
|
|
Task<string> GetRegionAsync();
|
|
|
|
|
|
Task<string> GetAccessKeyAsync();
|
|
|
|
|
|
Task<string> GetAccessKeyIdAsync();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|