QUESTION POSED ON: 26 May 2006
I'm writing a simple agent that checks a field in a Lotus Notes document against today's date. If the document's date is later than today, the agent sends an e-mail to the people who are part of NotificationGroup and Autonotify fields.
According to the log, the agent runs on schedule, but the e-mails aren't coming through. If I manually run the agent, the e-mails come through fine. I'm not sure why.
Here is my code:
@If(@Today > ExpirationDate;@MailSend
(NotificationGroup;AutoNotify;NULL;"ALERT
EXPIRED";"";"Click the doclink to view the expired
alert notification: " + CustName + " ";[IncludeDoclink]);"");
SELECT @All
|