Interface IRescopeEmailService
The default implementation uses Umbraco's IEmailSender
public interface IRescopeEmailService
Methods
Send<EmailType>(string, EmailType)
Send an email to the specified address
Task Send<EmailType>(string email, EmailType value) where EmailType : IRescopeEmailTemplateModel
Parameters
emailstringAn email address
valueEmailTypeA model that describes the email to send (IRescopeEmailTemplateModel)
Returns
Type Parameters
EmailType