mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
28 lines
759 B
TypeScript
28 lines
759 B
TypeScript
|
|
import * as BluebirdPromise from "bluebird";
|
|
|
|
import { AbstractEmailNotifier } from "../notifiers/AbstractEmailNotifier";
|
|
import { EmailNotifierConfiguration } from "../configuration/Configuration";
|
|
import { IMailSender } from "./IMailSender";
|
|
|
|
export class EMailNotifier extends AbstractEmailNotifier {
|
|
private mailSender: IMailSender;
|
|
private sender: string;
|
|
|
|
constructor(options: EmailNotifierConfiguration, mailSender: IMailSender) {
|
|
super();
|
|
this.mailSender = mailSender;
|
|
this.sender = options.sender;
|
|
}
|
|
|
|
sendEmail(to: string, subject: string, content: string) {
|
|
const mailOptions = {
|
|
from: this.sender,
|
|
to: to,
|
|
subject: subject,
|
|
html: content
|
|
};
|
|
return this.mailSender.send(mailOptions);
|
|
}
|
|
}
|