Cleanup: replace some list with vector.
[dcpomatic.git] / src / lib / emailer.h
1 /*
2     Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include <curl/curl.h>
23 #include <boost/scoped_array.hpp>
24
25
26 class Emailer
27 {
28 public:
29         Emailer(std::string from, std::vector<std::string> to, std::string subject, std::string body);
30
31         void add_cc (std::string cc);
32         void add_bcc (std::string bcc);
33         void add_attachment (boost::filesystem::path file, std::string name, std::string mime_type);
34
35         void send (std::string server, int port, EmailProtocol protocol, std::string user = "", std::string password = "");
36
37         std::string notes () const {
38                 return _notes;
39         }
40
41         size_t get_data (void* ptr, size_t size, size_t nmemb);
42         int debug (CURL* curl, curl_infotype type, char* data, size_t size);
43
44         /** @return full email, after send() has been called */
45         std::string email () const {
46                 return _email;
47         }
48
49         static std::string address_list(std::vector<std::string> addresses);
50
51 private:
52
53         std::string fix (std::string s) const;
54         static std::string encode_rfc1342 (std::string subject);
55
56         std::string _from;
57         std::vector<std::string> _to;
58         std::string _subject;
59         std::string _body;
60         std::vector<std::string> _cc;
61         std::vector<std::string> _bcc;
62
63         struct Attachment {
64                 boost::filesystem::path file;
65                 std::string name;
66                 std::string mime_type;
67         };
68
69         std::vector<Attachment> _attachments;
70         std::string _email;
71         size_t _offset;
72         std::string _notes;
73 };