Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status Shipped
Workspace Notes
Created by Guest
Created on Dec 20, 2019

Printing attachments without opening them

Hello Team, i got a case, where customer query is :Is there a way to print multiple attachments attached to a single email without opening and/or viewing each individual attachment first? If this can be done without writing an agent, it would be ideal. If an agent is required, I would appreciate ideas on how it should be written.

Is there any way to do the same ?

  • Attach files
  • Admin
    Thomas Hampel
    Reply
    |
    Jan 3, 2020

    You can do this with a small LotusScript agent.
    Looping all attachments and (if they meet your criteria), detach them to the system %temp% folder. and print them by using the native OS API calls , e.g.
    https://docs.microsoft.com/en-us/windows/win32/shell/folderitems2-invokeverbex

    by calling the verb "print" on the file object:
    printThis.InvokeVerbEx ("print")