Which code snippet below would correctly send the message and include the button?

Charles has created an agent which uses the Send method of the NotesDocument class. He has added a button to the document and it should be included when the message is sent.

Which code snippet below would correctly send the message and include the button?
A . Dim doc as NotesDocument’…set value of doc…Call doc.Save(True, False)Call doc.Send(False, True)
B . Dim doc as NotesDocument’…set value of doc…Call doc.Save(False, False)Call doc.Send(True)
C . Dim doc as NotesDocument’…set value of doc…Call doc.Save(False)Call doc.Send(SendTo, True)
D . Dim doc as NotesDocument’…set value of doc…Call doc.Save(True)Call doc.Send("SendTo", True)

Answer: B

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments