Send mail but no save

I have a little question :

I would like to create a button as the standard send button.

Except that my button is sending a message without saving it in the message send view… and with no popup “send/save/ignore…”

it is possible ?

I have try this :

@SetField(“SaveOptions”;“0”);

MEMO_SEND:=“1024”;

FIELD ActionInProgress:=MEMO_SEND;

@If(@Command([FileSave]);@Command([FileCloseWindow]);@Return(“”))

Subject: Send mail but no save

Setting SaveOptions to zero tells Notes that the document should never be saved.

If you want it saved, remove that line.

If you want it saved without any warnings or popups, set it to One, not Zero, which will mean always save the document.

Subject: Send mail & i want no save in sent view

thank you for your response… butThis is what I want.

I want to send a message without registration in the “sent” view, because the message contains a large attachment

(sorry for my bad english)

Subject: RE: Send mail & i want no save in sent view

The sent view has a selection formula of:

SELECT DeliveredDate = “” & PostedDate != “” & !(@IsMember(“S”; ExcludeFromView))

So you need to make it so that selection formula fails for your document.

Example, append “S” to the ExcludeFromView field

Subject: Send mail but no save

where can I find the different values that can take the field “ActionInProgress” ?