Hi all,
Is it possible, via LotusScript, to control a customized agent that runs after a new mail has arrived to identifies the name in ‘from’ item, in order to reply the message once to each sender?
CreateReplyMessage has only one parameter (true/false), that doesn’t work what I want.
Thanks
Subject: CreateReplyMessage
You could use your ‘Rules’ to copy it into a folder.
Then have an agent that looks into this folder and creates a new reply then removes it from the folder.
Just be aware if the sender has an out of office message, you could create an endless loop.
Be very careful to confirm with the sender they will allow this return… don’t just set this up to reply to everyone. Some email is rejected and some email doesn’t have a valid replyto… these could cause an endless loop too.
These problems could bring down your gateway, so is serious caveats.
Good luck.
Subject: RE: CreateReplyMessage
Thank you Uptagrafft,
I did some like your suggestion, with a little difference: after new mail, I got the ‘From’ item and created a new doc with that reference.
When another new mail arrived, the script searched a view on those documents.
If the code found a entry equals to the ‘from’ item in this new document, the ‘doc.send’ is avoided and no reply is made.
But , I dont know why, all time the agent runs, in the user’s mail database is created a new doc, which appears in Draft view.
Opening the document, the form is that I was designed to serve as a record of ‘From’ entries!!!
I need another way to make it.
Thank you!
But I had a problem: