in kotlin/space-events/src/main/kotlin/org/webhooks/Messages.kt [8:27]
fun messageToNewOrgMember(): ChatMessage {
return message {
outline(
MessageOutline(
icon = ApiIcon("happiness"),
text = "Welcome to our company!"
)
)
section {
text("The following links will help you to get used to the new place:")
text(
"""
* [How to set up your workplace](https://example.com)
* [Where we usually eat lunch](https://example.com)
* [How to take sick leave or vacation](https://example.com)
""".trimIndent()
)
}
}
}