I’m looking for formula for sending an agent, the agent needs to locate new documents in a view, send an email with a doc link attached to the person who sent in the emailstamp the documents in the view so that the e-mail is only sent once
Thanks in advance
Subject: Formula for sending an email
You’ve basically written the agent by describing what you want to do.If FlagField is the field you use to stamp the doc that mail has been sent:
@If(FlagField = “”; @Do(@Mailsend(…);@SetField(“FlagField”;“yep”);@Success);
You could run this on demand, once every or when new docs are created or…
HTH
Doug