Tweak naming of KDM emails and attachments.
[dcpomatic.git] / src / lib / emailer.h
index 4b4d1f6f77d4013905d2609decbb2bd9ef430c57..9e6fca5b05f1665a8b34271991fa430e66d8ec21 100644 (file)
@@ -27,7 +27,7 @@ public:
 
        void add_cc (std::string cc);
        void add_bcc (std::string bcc);
-       void add_attachment (boost::filesystem::path attachment, std::string);
+       void add_attachment (boost::filesystem::path file, std::string name, std::string mime_type);
 
        void send (boost::shared_ptr<Job> job);
 
@@ -44,7 +44,14 @@ private:
        std::string _body;
        std::list<std::string> _cc;
        std::list<std::string> _bcc;
-       std::list<std::pair<boost::filesystem::path, std::string> > _attachments;
+
+       struct Attachment {
+               boost::filesystem::path file;
+               std::string name;
+               std::string mime_type;
+       };
+
+       std::list<Attachment> _attachments;
        std::string _email;
        size_t _offset;
        boost::scoped_array<char> _notes_buffer;