Hi,
I tried to call the Evaluate and @Name to get the internet email address from mails’ From field, in a Lotusscript view action:
Set collection = db.UnprocessedDocuments
Set doc = collection.GetFirstDocument()
Dim TmpFrom As Variant
While Not(doc Is Nothing)
TmpFrom = Evaluate( “@Name( [ ADDRESS821 ] ; From )”, doc )
…
When this code is ran, Notes reports “Error in EVALUATE macro”.
Is it correct to use a formula in a loop for many documents? And how to get the email address?
Thanks in advanced~