< Back

Document Subject: Pick Personal Email Addresses from Personal Address Book Contacts
Hint Short Cut: Add this to your code & documentation to help you find this page.
http://#PickPersonalEmail or http://A555F9/nn.nsf/ByAlias/PickPersonalEmail

Quick bit of code that can be put in a button to allow the user to pick one or more internet email addresses from their personal address book.




Code:

 

e:=@Command([EditDocument];"1");
@If(e=0;@Return(@Prompt([Ok];"!";"You do not have edit rights for this document"));"");

r:=@PickList([Custom];"":"names.nsf";"Contacts";"Contact";"Choose the contact(s) who the request should be emailed to.";2);
FIELD PlantContacts:=PlantContacts:r;

@Command([ViewRefreshFields]);
""

 

End of code.