Remove use of fmemopen.
[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                 return _notes;
36         }
37
38         size_t get_data (void* ptr, size_t size, size_t nmemb);
39         int debug (CURL* curl, curl_infotype type, char* data, size_t size);
40
41 private:
42         static std::string address_list (std::list<std::string> addresses);
43
44         std::string _from;
45         std::string _to;
46         std::string _subject;
47         std::string _body;
48         std::list<std::string> _cc;
49         std::list<std::string> _bcc;
50
51         struct Attachment {
52                 boost::filesystem::path file;
53                 std::string name;
54                 std::string mime_type;
55         };
56
57         std::list<Attachment> _attachments;
58         std::string _email;
59         size_t _offset;
60         std::string _notes;
61 };