| 123456789101112131415161718 |
- using System.Net.Mail;
- namespace Abp.Net.Mail.Smtp
- {
- /// <summary>
- /// Used to send emails over SMTP.
- /// </summary>
- public interface ISmtpEmailSender : IEmailSender
- {
- /// <summary>
- /// Creates and configures new <see cref="SmtpClient"/> object to send emails.
- /// </summary>
- /// <returns>
- /// An <see cref="SmtpClient"/> object that is ready to send emails.
- /// </returns>
- SmtpClient BuildClient();
- }
- }
|