Push-Nachrichten von MacTechNews.de
Würden Sie gerne aktuelle Nachrichten aus der Apple-Welt direkt über Push-Nachrichten erhalten?
Forum>Software>Mail ohne Bilder drucken

Mail ohne Bilder drucken

renuel201109.08.1115:54
Hallo zusammen,

ich suche schon eine ganze Weile nach einer Möglichkeit Mails ohne Bilder zu drucken, eine Option wie "Bilder für den Druck entfernen". Bis jetzt habe ich noch keine gescheite Lösung gefunden.

In den Einstellungen bei Mail ( 4.5 in OS X 10.6.7) habe ich nichts gefunden, im Druckdialog auch nicht. Vielleicht kennt jemand ein kleines Zusatzprogramm für so etwas.


Verregnete Grüße
Wolfgang
0

Kommentare

_mäuschen
_mäuschen09.08.1116:33

Kein Programm, aber ein turnaround

Selektiere den Inhalt der e-mail

⌘-C

Wechsle zu TextEdit

⌘-V
⇧⌘-T

⌘-P
 

0
renuel201109.08.1117:02
Hallo Mäuschen,

vielen Dank, das hilft mir schon mal weiter.
Aber so eine Funktion als Option im Programm wäre wirklich sinnvoll, meine Kunden schicken mir häufig riesige Bilddateien als Vorlage, anstatt nur den Ausschnitt um den es geht. Da wird leider oft nicht nachgedacht und einfach was an eine Mail angehängt.

Wenn mal jemand eine Erweiterung findet, oder eventuell etwas auf die Schnelle programmieren kann, das wäre mir auch ein paar Euro wert.
0
_mäuschen
_mäuschen09.08.1118:09

Einen Dienst erstellen mit Automator

tell application "Mail"
    activate
    set selectedMessages to selection
    if (count of selectedMessages) is equal to 0 then
        display alert "No Messages Selected" message "Select the message you want to get the plain text of before running this script."
    else
        set theMessage to item 1 of selectedMessages
        set theSource to content of theMessage
    end if
end tell
tell application "TextEdit"
    make new document
    set text of document 1 to theSource as text
    print document 1 without print dialog
    close document 1 saving no
end tell



0
_mäuschen
_mäuschen09.08.1118:44

shame on me

so is's bereinigt

tell application "Mail"
    activate
    set selectedMessages to selection
    if (count of selectedMessages) is equal to 0 then
        display alert "No Messages Selected" message "Select the message you want to get the plain text of before running this script."
    else
        set theMessage to item 1 of selectedMessages
        set theSource to content of theMessage
        set theSubject to subject of theMessage
        my doPrint(theSource, theSubject)
    end if
end tell

on doPrint(theSource, theSubject)
    tell application "TextEdit"
        make new document with properties {name:theSubject}
        set text of document 1 to theSource as text
        print document 1 without print dialog
        close document 1 saving no
    end tell
end doPrint

0
renuel201109.08.1122:51
Danke nochmals, ich habe Automator noch nie benutzt, werde mich aber mal drangeben.
0
renuel201109.08.1123:12
Funktioniert, super

Habe mich da nie ran getraut, bin zu alt für so was
0

Kommentieren

Diese Diskussion ist bereits mehr als 3 Monate alt und kann daher nicht mehr kommentiert werden.