Add support for custom names for aliases. Synchronization of names for the gmail api. (#365)

This commit is contained in:
Burak Kaan Köse
2024-09-12 01:14:40 +02:00
committed by GitHub
parent 310943590b
commit f85085de41
4 changed files with 16 additions and 2 deletions

View File

@@ -33,6 +33,13 @@ namespace Wino.Core.Domain.Entities
/// It can't be deleted or changed.
/// </summary>
public bool IsRootAlias { get; set; }
/// <summary>
/// Optional sender name for the alias.
/// Falls back to account's sender name if not set when preparing messages.
/// Used for Gmail only.
/// </summary>
public string AliasSenderName { get; set; }
}
public class MailAccountAlias : RemoteAccountAlias