[GastForen Programmierung/Entwicklung AppleScript 'Fwd: ' vom Email Header entfernen

  • Suche
  • Hilfe
  • Lesezeichen
  • Benutzerliste
Themen
Beiträge
Moderatoren
Letzter Beitrag

'Fwd: ' vom Email Header entfernen

TBfromGL
Beiträge gesamt: 1

28. Aug 2023, 11:00
Beitrag # 1 von 1
Bewertung:
(27415 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Alles funktioniert eigentlich gut, das 'Fwd:' schmerzt in meinen Augen

Code
  1. tell application "Mail"
    set theMessage to item 1 of (get selection)
    set forwardedMessage to forward theMessage without opening window
    tell forwardedMessage
    make new to recipient at end of to recipients with properties {address:"a@b.com"}
    set message signature of forwardedMessage to signature "Blank" of application "Mail"
    set stringLength to (count subject of forwardedMessage)
    set subject of forwardedMessage to (characters 0 thru stringLength) as string
    send
    end tell
    end tell

X