using System.Net.Mail;
namespace Abp.Net.Mail.Smtp
{
///
/// Used to send emails over SMTP.
///
public interface ISmtpEmailSender : IEmailSender
{
///
/// Creates and configures new object to send emails.
///
///
/// An object that is ready to send emails.
///
SmtpClient BuildClient();
}
}