Log full email body to DEBUG_EMAIL.
[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::list<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 (std::string server, int port, std::string user = "", std::string password = "");
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         /** @return full email, after send() has been called */
42         std::string email () const {
43                 return _email;
44         }
45
46         static std::string address_list (std::list<std::string> addresses);
47
48 private:
49
50         std::string _from;
51         std::list<std::string> _to;
52         std::string _subject;
53         std::string _body;
54         std::list<std::string> _cc;
55         std::list<std::string> _bcc;
56
57         struct Attachment {
58                 boost::filesystem::path file;
59                 std::string name;
60                 std::string mime_type;
61         };
62
63         std::list<Attachment> _attachments;
64         std::string _email;
65         size_t _offset;
66         std::string _notes;
67 };