diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-26 16:14:53 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-26 16:14:53 +0000 |
| commit | 969064d0e45b5885374452ff1ac2e15377bd76eb (patch) | |
| tree | dc4b8bb5b83fe603bac0e8aafa0b0125ad2e6007 /src | |
| parent | a9f8daff61e227f046f5b87830ce902fd9c3fed7 (diff) | |
Speculative fix for missing attachments on KDM emails.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/emailer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/emailer.cc b/src/lib/emailer.cc index fd815b789..916d17182 100644 --- a/src/lib/emailer.cc +++ b/src/lib/emailer.cc @@ -125,7 +125,7 @@ Emailer::send (shared_ptr<Job> job) if (!_attachments.empty ()) { email << "MIME-Version: 1.0\r\n" - << "Content-Type: multipart/alternative; boundary=" << boundary << "\r\n"; + << "Content-Type: multipart/mixed; boundary=" << boundary << "\r\n"; } email << "Subject: " << _subject << "\r\n" |
