Tweak naming of KDM emails and attachments.
[dcpomatic.git] / src / lib / emailer.h
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <curl/curl.h>
21 #include <boost/scoped_array.hpp>
22
23 class Emailer
24 {
25 public:
26         Emailer (std::string from, std::string to, std::string subject, std::string body);
27
28         void add_cc (std::string cc);
29         void add_bcc (std::string bcc);
30         void add_attachment (boost::filesystem::path file, std::string name, std::string mime_type);
31
32         void send (boost::shared_ptr<Job> job);
33
34         std::string notes () const;
35
36         size_t get_data (void* ptr, size_t size, size_t nmemb);
37
38 private:
39         static std::string address_list (std::list<std::string> addresses);
40
41         std::string _from;
42         std::string _to;
43         std::string _subject;
44         std::string _body;
45         std::list<std::string> _cc;
46         std::list<std::string> _bcc;
47
48         struct Attachment {
49                 boost::filesystem::path file;
50                 std::string name;
51                 std::string mime_type;
52         };
53
54         std::list<Attachment> _attachments;
55         std::string _email;
56         size_t _offset;
57         boost::scoped_array<char> _notes_buffer;
58 };