An EmailSender is responsible for sending the email, e.g. via an SMTP connection or using some other mail-sending API. By default, the EmailPlugin uses the NodemailerEmailSender, but it is also possible to supply a custom implementation:
Example
InjectableStrategy(email: EmailDetails, options: EmailTransportOptions) => void | Promise<void>Uses the configured transport to send the generated email.
EmailSender(email: EmailDetails, options: EmailTransportOptions) =>