1

Im looking for a quick way to bring up a compose mail message dialogue.

Either a keyboard shortcut, or even a little tool within mountain lion's new notification center would be cool.

Anyone got anything?

Jonah Katz
  • 151
  • 4

3 Answers3

1

The easiest way out-of-the box is to use the "services menu". Just select some text anywhere (a single character will do), right click to open the context menu and select the bottom-most item "Email Selection":

Screenshot of Email Selection

If it is not present (should be) you need to enable it under System settings -> Keyboard -> Keyboard commands -> Services -> Text

1

Mail Unread Menu is what you want. Free/donation-ware. Compose New Mail from the menubar.

Also custom alerts and more. Working well in Mountain Lion.

Zo219
  • 2,651
0

One option would be to assign a shortcut to an AppleScript like this:

tell application "Mail"
    make new outgoing message with properties {visible:true}
    activate
end tell
Lri
  • 105,117