summaryrefslogtreecommitdiff
path: root/src/managment/builder/mail.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/managment/builder/mail.hpp')
-rw-r--r--src/managment/builder/mail.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/managment/builder/mail.hpp b/src/managment/builder/mail.hpp
new file mode 100644
index 0000000..ae53202
--- /dev/null
+++ b/src/managment/builder/mail.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#include "managment/mail.hpp"
+
+namespace smtp::manage::builder
+{
+ class Mail
+ {
+ public:
+ Mail() = default;
+ ~Mail() = default;
+
+ smtp::manage::Mail Build() const;
+ };
+
+}