Trying to perfect a hazel recipe. Is there a way to email my

I have filethis.com download monthly credit card statements to my dropbox. From there, hazel will rename them and sort them into folders via date. Once that is finished, hazel will mark it with a tag and send me an email "Your statement is ready!" What I would love to do is have a link in that email to the folder where it resides. I.e., "Your statement is ready, click here to view the statements folder".
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:
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