Created
November 5, 2012 19:19
-
-
Save reinvented/4019726 to your computer and use it in GitHub Desktop.
An AppleScript to use with Alfred.app to create a new Trac ticket by email
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on alfred_script(q) | |
tell application "Mail" | |
set myMessage to make new outgoing message with properties {visible:true, subject: q} | |
set message signature of myMessage to signature "trac" | |
tell myMessage | |
make new to recipient with properties {name:"Trac", address:"ticket@example.com"} | |
end tell | |
activate | |
end tell | |
end alfred_script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment