32 lines
1.5 KiB
C#
32 lines
1.5 KiB
C#
using System.Net.Security;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using MailKit.Net.Smtp;
|
|
using Nop.Core.Domain.Messages;
|
|
|
|
namespace Nop.Services.Messages;
|
|
|
|
/// <summary>
|
|
/// SMTP Builder
|
|
/// </summary>
|
|
public partial interface ISmtpBuilder
|
|
{
|
|
/// <summary>
|
|
/// Create a new SMTP client for a specific email account
|
|
/// </summary>
|
|
/// <param name="emailAccount">Email account to use. If null, then would be used EmailAccount by default</param>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the an SMTP client that can be used to send email messages
|
|
/// </returns>
|
|
Task<SmtpClient> BuildAsync(EmailAccount emailAccount = null);
|
|
|
|
/// <summary>
|
|
/// Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication.
|
|
/// </summary>
|
|
/// <param name="sender">An object that contains state information for this validation.</param>
|
|
/// <param name="certificate">The certificate used to authenticate the remote party.</param>
|
|
/// <param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
|
|
/// <param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
|
|
/// <returns>A System.Boolean value that determines whether the specified certificate is accepted for authentication</returns>
|
|
bool ValidateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors);
|
|
} |