Is there a way to create a hyperlink to a local folder? The path is /Users/Lionheartednyhc/Dropbox/Documents/Statements/CreditCard
The email is sent using this applescript:
- Code: Select all
tell application "Mail"
set theNewMessage to make new outgoing message with properties {subject:"New Statement Available", content:"The latest statement is now available in your statements folder.", visible:true}
tell theNewMessage
make new to recipient at end of to recipients with properties {address:"poopfart@fart.poo"}
send
end tell
end tell