Tidying.
[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 "types.h"
23 #include <curl/curl.h>
24 #include <boost/scoped_array.hpp>
25
26
27 class Emailer
28 {
29 public:
30         Emailer (std::string from, std::list<std::string> to, std::string subject, std::string body);
31
32         void add_cc (std::string cc);
33         void add_bcc (std::string bcc);
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::list<std::string> addresses);
51
52 private:
53
54         std::string fix (std::string s) const;
55
56         std::string _from;
57         std::list<std::string> _to;
58         std::string _subject;
59         std::string _body;
60         std::list<std::string> _cc;
61         std::list<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::list<Attachment> _attachments;
70         std::string _email;
71         size_t _offset;
72         std::string _notes;
73 };