32 lines
772 B
C#
32 lines
772 B
C#
using DomainObjects.Abstractions;
|
|
|
|
namespace DomainObjects.Documents.Sites;
|
|
|
|
public class PassworRecoverySettings : DomainObjectBase<PassworRecoverySettings> {
|
|
|
|
public MailboxConnectionSettings SmtpSettings { get; set; }
|
|
|
|
/// <summary>
|
|
/// DomainKeys Identified Mail (DKIM) is an email authentication method designed to detect forged sender addresses in email (email spoofing),<br />
|
|
/// a technique often used in phishing and email spam.
|
|
/// </summary>
|
|
public DkimSettings DkimSettings { get; set; }
|
|
|
|
public Guid TemplateId { get; set; }
|
|
|
|
public Contact Email { get; set; }
|
|
|
|
|
|
public string Subject { get; set; }
|
|
|
|
public List<string> Paragraphs { get; set; }
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|