From cf012c0b7efffb81b03497a04b0fdad0423c72f7 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 26 Jan 2021 16:05:55 +0100 Subject: [PATCH] Added a barebones class for handleing mail stuff ref #118 --- src/mailer.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/mailer.ts diff --git a/src/mailer.ts b/src/mailer.ts new file mode 100644 index 0000000..069e496 --- /dev/null +++ b/src/mailer.ts @@ -0,0 +1,7 @@ + +/** + * This class is responsible for all things mail sending. + */ +export class Mailer { + +}