Skip to content

Commit

Permalink
Added NotesNote.send() to send a note via email
Browse files Browse the repository at this point in the history
  • Loading branch information
klehmann committed Jun 17, 2020
1 parent c33fc7b commit 6d95536
Show file tree
Hide file tree
Showing 12 changed files with 1,039 additions and 0 deletions.
Expand Up @@ -4056,6 +4056,10 @@ private int toNoteOpenOptions(Set<OpenNote> flags) {
options = options | NotesConstants.OPEN_WITH_FOLDERS;
}

if (flags.contains(OpenNote.CACHE)) {
options = options | NotesConstants.OPEN_CACHE;
}

// we negated the following two OPEN_XXX constants, so we keep
// the items in their native format if conversion is not explicitly requested

Expand Down

0 comments on commit 6d95536

Please sign in to comment.