Copy path name as clickable link in email for shared sever

hi guys,

I’m trying to find de best script for my colleagues so we can share clickable links to each other.
We working on the same LAN on the same shared server. There are already some solutions online but I’m stil not there yet. Maybe you can help me out. I think this is the best I found on the Mac scripter forum. But how do I save this for the easy use? Can I add it as a service in finder? Or beter as an application in my dock for drag and drop?

 
activate application "SystemUIServer" -- works around a selection bug
tell application "Finder"
	activate
	set theSelection to (get selection)
	if theSelection is {} then
		display dialog "Nothing selected" buttons {"Cancel"} default button 1
	end if
	set urlList to {}
	repeat with anItem in theSelection
		set end of urlList to URL of anItem
	end repeat
end tell
set {TID, text item delimiters} to {text item delimiters, return}
set urlLines to urlList as text
set text item delimiters to TID

tell application "Mail"
	activate
	make new outgoing message with properties {content:"Right click and select Open URL" & return & return & urlLines, subject:"file link", visible:true}
end tell
  

Hope there is someone how can help me with a few options:D thanks in forward.