Summary: | Send by mail (Outlook) multiple images - only one image attached to mail | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | andrej.valencic |
Component: | Plugin-Generic-SendByMail | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | REPORTED --- | ||
Severity: | normal | CC: | caulier.gilles, cneill51, erlacher.thomas, metzpinguin |
Priority: | NOR | ||
Version First Reported In: | 8.7.0 | ||
Target Milestone: | --- | ||
Platform: | Microsoft Windows | ||
OS: | Microsoft Windows | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: |
Preparing images to export by mail
Outlook new mail windows with only one image attached |
Description
andrej.valencic
2019-08-27 13:05:15 UTC
Created attachment 122381 [details]
Preparing images to export by mail
Created attachment 122382 [details]
Outlook new mail windows with only one image attached
Yes, Outlook processes only one attachment from the command line, thanks to Microsoft. It would only be possible via a native Windows API. Maik (In reply to Maik Qualmann from comment #3) > Yes, Outlook processes only one attachment from the command line, thanks to > Microsoft. It would only be possible via a native Windows API. > > Maik OK, good to know. I'll be using TB instead. Maik, One solution with Outlook is to prepare a tarball on attachments before. The same problem exists with Apple Mail application. Gilles *** Bug 414301 has been marked as a duplicate of this bug. *** The same ... Only one Image is attached. Thank you for all :o) The same ... Only one image ist attached ... :o) Thank you for all With outlook the same problem ... Please change it for sending more then one attachment ... Thank you With outlook 2019 or different the same problem ... Please change it for sending more then one attachment ... Thank you It looks like Microsoft has recently become aware of the problem: https://answers.microsoft.com/en-us/msoffice/forum/all/how-to-attached-multiple-files-using-outlook-365/34e472bf-6a84-47a2-81c6-f756dcb6b489 The only alternative currently possible would be to create a ZIP file. Maik Hi Maik, yes, and definitively, create an archive with KF6::KArchive framework is the best way for all platforms. A similar bug exists for the Apple Mail application under macOS. Gilles Dear digikam team. Process preparing for multiple fotos works correctly but only one attachement in outlook. Please for update. Thanks for your work! I hope the bug will be solved in next time. We use digikam to export Fotos to outlook and change the format to jpeg while exporting. But so it dont work. Über die Command Line schafft Outlook nur ein Attachement. Habe in einem anderem Forum die Antwort von dem User Eugene Astafiev's gefunden. " Yes, the /a switch is limited to a single attachment. You can't attach multiple files using the /a command line switch. As a possible workaround you may create a script which can process multiple command line parameters for attaching to a new Outlook item: On Error Resume Next Set App = GetObject(, "Outlook.Application") If Err <> 0 Then Set App = CreateObject("Outlook.Application") Set AppItem = App.CreateItem(0) If WScript.Arguments.Count > 0 then For FileName = 0 to (WScript.Arguments.Count - 1) AppItem.Attachments.Add WScript.Arguments(FileName) Next AppItem.Display End If Set App = Nothing Set AppItem = Nothing You can save this code in the .vbs file (VBScript) and run it when you need to attach multiple files. " Vielleicht könnte ein Entwickler für Digikam diesen Workaround irgendwie nutzen. Vielen Dank dafür |