Here's my scenario. We want to auto save to Laserfiche documents that come in through our Outlook as attachments into a particular folder in Laserfiche. With no user interventions if possible. Has anyone been able to do this?
Here's my scenario. We want to auto save to Laserfiche documents that come in through our Outlook as attachments into a particular folder in Laserfiche. With no user interventions if possible. Has anyone been able to do this?
Hi Bonnie,
Thanks for your case. We will look into adding the feature to future version.
Qinmei
Hi Qinmei,
Has this been incorporated into the new LF 10 Version?
Thanks
Hi, Does anyone know if this has been incorporated in the new version?
We want to auto save to Laserfiche documents that come in through our Outlook as attachments into a particular folder in Laserfiche. With no user interventions if possible.
I think I saw something about Import Agent being able to do this but I don't know the full capabilities or how to set this up, it's just something I saw at a user group a few weeks ago.
That's correct. Import Agent 10.3.1 includes email archiving capabilities.
Bonnie
There are several 3rd party integrations that import email into Laserfiche withour user interaction. Of these, I think CMA Email Manager is the best.
I have been able to move attachments from outlook into a shared drive then use either Quick Fields or Import Agent, just using a script in my outlook email rules. This rule could also be a server side rule instead of a client side outlook rule.
Could I get a copy of your script? I went on line and found others but they were not 'directly related' to Outlook and Laserfiche.
Public Sub saveAttachtoDisk(itm As Outlook.MailItem) Dim objAtt As Outlook.Attachment Dim saveFolder As String Dim dateFormat dateFormat = Format(Now, "mm-dd-yyyy H-mm") saveFolder = "PUT THE PATH TO YOUR SHARED DRIVE HERE" For Each objAtt In itm.Attachments objAtt.SaveAsFile saveFolder & "\" & dateFormat & objAtt.DisplayName Set objAtt = Nothing Next End Sub
Here are the other rules that I am using.
I force the subject line through a mailto statement in the document but you could use any identifier you need to target the specific email then run the above script on it.
Just to clarify, I am using the script to move the attachment into a shared drive then having Import Agent monitor that shared drive folder to move the document into Laserfiche. But it is a process that does not require user interaction.
Hi Bonnie,
I have setup a way this works for me. You can use LF Snapshot and configure the user so that it does not prompt. In Outlook you can specify a rule so that it prints using your Default printer which you will have to make snapshot and if you have attachments you can write a macro script to incorporate in your outlook rule which will print to Laserfiche.
Here is a link http://www.slipstick.com/developer/print-attachments-as-they-arrive/
Thanks
Gert