summaryrefslogtreecommitdiff
path: root/src/message/sender.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/message/sender.hpp')
-rw-r--r--src/message/sender.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/message/sender.hpp b/src/message/sender.hpp
index ba5953e..3118319 100644
--- a/src/message/sender.hpp
+++ b/src/message/sender.hpp
@@ -22,6 +22,7 @@ namespace smtp::message
bool Send( std::string const& mail_from, std::string const& subject, std::string const& text );
private:
+ bool InitCurl( CURL* curl, WriteThis const& upload_ctx, std::string const& mail_from );
void UpdateMailText( std::string const& mail_from, std::string const& subject, std::string const& textt ) const;
void FillRecipients(CURL* curl, curl_slist* recipients );
std::string GetHostPortData() const;
@@ -29,8 +30,6 @@ namespace smtp::message
manage::Settings& mSettingsStorage;
manage::Mail const& mMailTo;
-
- bool InitCurl( CURL* curl, WriteThis const& upload_ctx, std::string const& mail_from );
};
}