Supporters update.
[dcpomatic.git] / src / lib / email.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 Email
27 {
28 public:
29         Email(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         /** Add attachment, copying the contents of the file into memory */
34         void add_attachment (boost::filesystem::path file, std::string name, std::string mime_type);
35
36         void send (std::string server, int port, EmailProtocol protocol, std::string user = "", std::string password = "");
37
38         std::string notes () const {
39                 return _notes;
40         }
41
42         size_t get_data (void* ptr, size_t size, size_t nmemb);
43         int debug (CURL* curl, curl_infotype type, char* data, size_t size);
44
45         /** @return full email, after send() has been called */
46         std::string email () const {
47                 return _email;
48         }
49
50         static std::string address_list(std::vector<std::string> addresses);
51
52 private:
53
54         std::string fix (std::string s) const;
55         static std::string encode_rfc1342 (std::string subject);
56
57         std::string _from;
58         std::vector<std::string> _to;
59         std::string _subject;
60         std::string _body;
61         std::vector<std::string> _cc;
62         std::vector<std::string> _bcc;
63
64         struct Attachment {
65                 dcp::ArrayData file;
66                 std::string name;
67                 std::string mime_type;
68         };
69
70         std::vector<Attachment> _attachments;
71         std::string _email;
72         size_t _offset;
73         std::string _notes;
74 };