- Registriert
- 08.03.24
- Beiträge
- 1
Ich benötige ein Apple Script, dass eine Email mit Anhang erstellt. Der Anhang befindet sich IMMER auf dem Desktop des jeweiligen Anwenders. Nun habe ich ein Script erstellt, dass eine Email erstellt. Jedoch wird kein Anhang mit eingebunden. Knn mir bitte jemand meinen Fehler im Script zeigen? Vielen Dank
Hier mein Script:
set attachmentPath1 to (path to desktop as text) & "Test1.pdf"
tell application "Mail"
activate
set newMessage to make new outgoing message with properties {visible:true}
tell newMessage
make new to recipient at end of to recipients with properties {address:"[email protected]"}
set subject to "Testmail"
tell content
make new attachment with properties {file name:attachmentPath1} at after the last paragraph
end tell
end tell
end tell
Hier mein Script:
set attachmentPath1 to (path to desktop as text) & "Test1.pdf"
tell application "Mail"
activate
set newMessage to make new outgoing message with properties {visible:true}
tell newMessage
make new to recipient at end of to recipients with properties {address:"[email protected]"}
set subject to "Testmail"
tell content
make new attachment with properties {file name:attachmentPath1} at after the last paragraph
end tell
end tell
end tell