I'd like to add dynamic dates into my Alfred Workflow, but can't figure it out. This is what I've got so far:
tell application "Mail"
activate
make new outgoing message with properties {subject:"some subject", content:"some content" & return & return}
end tell
I'd like to include a dynamic date in the subject and Alfred snippets in the content, but they're not being recognized. For example:
tell application "Mail"
activate
make new outgoing message with properties {subject:"{date} Call Follow Up", content:"some content" & return & return}
end tell
Does that make sense? Any help would be much appreciated!