https://bugs.kde.org/show_bug.cgi?id=411348

--- Comment #15 from Thomas Erlacher <erlacher.tho...@gmail.com> ---
Ü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

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to