diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-13 13:07:16 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-13 13:07:16 +0000 |
| commit | df89a39cfd34d0d70609daa214d3b618bb6223bd (patch) | |
| tree | 1629307cc535fc0ea8804ca935022dddf163135d /src/lib/send_problem_report_job.cc | |
| parent | 43800d83434697a31bdfae62dd377cfc3900986b (diff) | |
Allow multiple recipients of KDM emails (#745).
Diffstat (limited to 'src/lib/send_problem_report_job.cc')
| -rw-r--r-- | src/lib/send_problem_report_job.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/send_problem_report_job.cc b/src/lib/send_problem_report_job.cc index f0c34f590..8142b173c 100644 --- a/src/lib/send_problem_report_job.cc +++ b/src/lib/send_problem_report_job.cc @@ -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); |
