| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace GreenTree.Strohrmann.ERP.Services.Notification
- {
- public class MailNotificationOptions : IMailNotificationOptions
- {
- #region Properties
- /// <summary>
- /// The Name from which the mails come from
- /// </summary>
- public string From { get; set; }
- /// <summary>
- /// The address of the SMTP server
- /// </summary>
- public string SmtpServerAddress { get; set; }
- /// <summary>
- /// The authenticated username on the SMTP server
- /// </summary>
- public string SmtpServerUsername { get; set; }
- /// <summary>
- /// The password of the authenticated SMTP server
- /// </summary>
- public string SmtpServerPassword { get; set; }
- /// <summary>
- /// The domain of the authenticated SMTP server
- /// </summary>
- public string SmtpServerDomain { get; set; }
- #endregion
- }
- }
|