diff options
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); |
