Rohan Patil
12/08/2022, 4:59 AM@op(required_resource_keys={"msteams"})
def teams_op(context):
card = Card()
card.add_attachment(text_message="Hello There !!")
context.resources.msteams.post_message(payload=card.payload)
owen
12/08/2022, 11:11 PMcard.add_attachment()
multiple times? i.e.
@op(required_resource_keys={"msteams"})
def teams_op(context):
card = Card()
card.add_attachment(text_message="Hello There !!")
card.add_attachment(text_message="Another card")
context.resources.msteams.post_message(payload=card.payload)
Rohan Patil
12/09/2022, 5:19 AM