Allow multiple recipients of KDM emails (#745).
[dcpomatic.git] / src / lib / send_problem_report_job.cc
index f0c34f590bca5f823dadabbfdc70863d9d5a84a1..8142b173c3d42e89171ed6fbafb5b5e7c1e79aed 100644 (file)
@@ -81,7 +81,10 @@ SendProblemReportJob::run ()
                add_file (body, "metadata.xml");
        }
 
-       Emailer emailer (_from, "carl@dcpomatic.com", "DCP-o-matic problem report", body);
+       list<string> to;
+       to.push_back ("carl@dcpomatic.com");
+
+       Emailer emailer (_from, to, "DCP-o-matic problem report", body);
        emailer.send (shared_from_this ());
 
        set_progress (1);