I'm looking for a list of MAPIMessages Actions. I want to be able to cancel one of several mail messages in a loop. Currently, when I do I receive the "User cancelled Process error". I'm thinking that any additional error handling code should go in the 397 codeunit with this:
IF OpenDialog THEN
MAPIMessages.Action(2) // SendDialog
ELSE
MAPIMessages.Action(3); // Send
Is there a MAPIMessage.Action that means exit or cancel without cancel entire process?
0