Does anyone know if it is possible to replace $AltPrincipal and $UpdatedBy fields when creating a memo using Lotusscript Agent. The agent is replying to a mail received and I want to hide the real address of the sender. I have replaced all other 'From' and 'SentBy' type fields as
newdoc.From = "AutoReply Agent"
newdoc.SMTPOriginator = "AutoReply Agent"
newdoc.ReplyTo = "DoNotReply"
newdoc.AltFrom = "AutoReply Agent"
newdoc.InetFrom = "AutoReply Agent"
newdoc.InetSendTo = "DoNotReply"
newdoc.PRINCIPAL = "AutoReply Agent"
newdoc.SendTo = "DoNotReply"
Your advice greatly appreciated...
newdoc.From = "AutoReply Agent"
newdoc.SMTPOriginator = "AutoReply Agent"
newdoc.ReplyTo = "DoNotReply"
newdoc.AltFrom = "AutoReply Agent"
newdoc.InetFrom = "AutoReply Agent"
newdoc.InetSendTo = "DoNotReply"
newdoc.PRINCIPAL = "AutoReply Agent"
newdoc.SendTo = "DoNotReply"
Your advice greatly appreciated...