Remove unused parameter.
[dcpomatic.git] / src / lib / emailer.h
index 9e6fca5b05f1665a8b34271991fa430e66d8ec21..8ec983f4368511e04d1cbfded031e3c6cddf380a 100644 (file)
 class Emailer
 {
 public:
-       Emailer (std::string from, std::string to, std::string subject, std::string body);
+       Emailer (std::string from, std::list<std::string> to, std::string subject, std::string body);
 
        void add_cc (std::string cc);
        void add_bcc (std::string bcc);
        void add_attachment (boost::filesystem::path file, std::string name, std::string mime_type);
 
-       void send (boost::shared_ptr<Job> job);
+       void send ();
 
-       std::string notes () const;
+       std::string notes () const {
+               return _notes;
+       }
 
        size_t get_data (void* ptr, size_t size, size_t nmemb);
+       int debug (CURL* curl, curl_infotype type, char* data, size_t size);
 
-private:
        static std::string address_list (std::list<std::string> addresses);
 
+private:
+
        std::string _from;
-       std::string _to;
+       std::list<std::string> _to;
        std::string _subject;
        std::string _body;
        std::list<std::string> _cc;
@@ -54,5 +58,5 @@ private:
        std::list<Attachment> _attachments;
        std::string _email;
        size_t _offset;
-       boost::scoped_array<char> _notes_buffer;
+       std::string _notes;
 };