APPLICATION DESIGN
A hidden SendTo field with a single recipient Sandy Brown needs to receive all documents saved in the Marketing Statistics database. Add a hidden Names field called SendTo to the Statistics form. The field formula contains the recipient's name and domain enclosed in quotation marks. The recipient's domain is required if the recipient isn't in the same Domino domain from which the document is sent.
"Sandy Brown @ Marketing"
A formula that calculates recipients and sends a document Approvers want to receive new travel requests from employees by e-mail. On the Travel Request form of the Employee Expenses database, create hidden text fields called SendTo, Subject, and Remark. The field formula below calculates the names of approvers and sends the original document as a link when the document is saved for the first time.
REM "Send mail to approvers the first time the doc is saved"; REM; SendTo :=@Unique(@Trim(ApproverName_1 : ApproverName_2 : ApproverName_3)); Subject := "Travel Request for " + TravelerName + "requires your approval"; Remark := "A Travel Request has been entered for " + TravelerName + ". Your approval is required. Please double-click the following link and approve or reject the request."; REM; @If(@IsNewDoc & @IsDocBeingSaved; @MailSend(SendTo; ""; ""; Subject; Remark; "";[IncludeDoclink]); "")
See Also