Mail

From RaySoft

Access, view and manage mail from all your email accounts in one place. Create professional-looking email messages on the go with desktop-class text formatting tools. Add images, scan documents, create sketches and attach files using the handy Format Bar. Catch up on email with more peace of mind with the new Mail Privacy Protection, which prevents email senders from learning information about your Mail activity.[1]

Documentation

Examples

1 pages found:

Hints

Use AppleScript to add a mailbox if it does not already exist.
set myMailboxName to "Projects/Holidays/Maledives"

tell application "Mail"
    activate

    tell account "RaySoft"
        if name of mailboxes does not contain myMailboxName ¬
        then
            make new mailbox with properties {name:myMailboxName}
        else
            return "A mailbox with the name '" & myMailboxName & "' already exists!"
        end if
    end tell
end tell

References