If you use the Slack Pack you may want to add links to your messages. Their syntax for allowing this isn’t intuitive.
For example, this does not work:
Slack::PostMessage([User's private Slack account],
Format("Click here: {1}", Hyperlink("www.example.com", "link title"))
"#random"
)
However, this does:
Slack::PostMessage([User's private Slack account],
Format("Click here: <{1}|{2}>", "www.example.com", "link title")
"#random"
)
The trick is to use that < url | title >
syntax. E.g. <www.example.com|Example!>
Read more here.