mail.pdf Tutorial
Auf das Rad unten links in Mail klicken (oder rechtsklicken auf ein Postfachsymbol)
Informationen auswählen
Das gewünschte Postfach auswählen
Bei E-Mails anzeigen: Die auf meinem Mac gelöscht worden sind
Alle angezeigten E-Mails auswählen
Unten rechts im Fenster auf “Vom Server löschen” klicken
Or, simply select both boxes (command + click) or groups of boxes. This is what I believe to be one of Mail's greatest features and one of my personal favorites. You can select any combintation of boxes to view in the Viewer Window. You can also have multiple Viewer Windows. You can view all of your accounts Inboxes at once or just one at a time. You can view account A's Inbox, Sent, and Trash all at the same time. Or, your view account A's Inbox, account B's Sentbox, and account C's Trash all at the same time. And with Organize by Thread, you can view any combination as a thread. And, as noted, if there is a specific view that you wish to see often, you can save it with smart mailboxes.
und dann die Sprache des Wörterbuchs ändern.
Fire up TextEdit and format your text however you would like. It supports bulleted lists, numbered lists, colors, etc. Once you have the text the way you like it, highlight it, and copy. Switch back to Mail and paste the text into your mail message. Mail should preserve all of the formatting that you made in TextEdit. And you can keep on merrily editing. If you want even more than TextEdit can provide, you can do the same in other HTML editors (like DreamWeaver).
Anpassung ggf. durch:
URL-Source in Editor öffnen
Nach <form suchen
i in_document.forms[i] anpassen: die Benutzerabfrage-Form ist die Form mit der laufenden Nummer i, wobei ab 0_ gezählt wird
Innerhalb der Form die Input Felder zählen und die elements[i] Indexe für Benutzername unnd Passwort anpassen, wobei ab 0 gezählt wird
Benutzername und Passwort in Script eintragen und speichern ggf. kompilieren und aufrufen
property target_URL : "http://www.gmx.net/de/dienst/index.html"
tell application "Safari" to open location target_URL
set x to "document.forms[1].elements[4].value = 'your login without quotes';
document.forms[1].elements[5].value = 'your password without quotes';
document.forms[1].submit();"
tell application "Safari" to do JavaScript x in document 1