fun messageToNewTeamMember()

in kotlin/space-events/src/main/kotlin/org/webhooks/Messages.kt [29:48]


fun messageToNewTeamMember(): ChatMessage {
    return message {
        outline(
            MessageOutline(
                icon = ApiIcon("happiness"),
                text = "Welcome to the MyTeam"
            )
        )
        section {
            text("This info will help you to get started:")
            text(
                """
                * [How to get project sources](https://example.com)
                * [How to prepare environment](https://example.com)
                * [How to build the project](https://example.com)
            """.trimIndent()
            )
        }
    }
}