samples
turbot/flowpipe-samples/send-message-to-user-in-microsoft-teams
OverviewPipelines
0
Triggers
0
Variables
GitHub

Send Message to User in Teams

Send an email to specific Team user and communicate to Team with a an update messge.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run send_message_to_user_in_microsoft_teams.pipeline.send_message_to_user_in_microsoft_teams \
--arg 'to_email=<string>' \
--arg 'subject=<string>' \
--arg 'content=<string>' \
--arg 'team_id=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = send_message_to_user_in_microsoft_teams.pipeline.send_message_to_user_in_microsoft_teams
args = {
to_email = <string>
subject = <string>
content = <string>
team_id = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
teams_credstringYesName for Microsoft Teams credentials to use. If not provided, the default credentials will be used.default
to_emailstringYesThe email-id of the primary receipient.-
subjectstringYesThe subject of the email.-
contentstringYesThe content of the email.-
team_idstringYesThe unique identifier of the team.-
channel_idstringNoThe channel's unique identifier.-

Outputs

This pipeline has no outputs.