| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace GreenTree.Strohrmann.ERP.Services.Notification
- {
- public interface IMailNotificationOptions
- {
- /// <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; }
- }
- }
|