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

Pipeline: 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_conn
connection.teams
YesName for Microsoft Teams connections to use. If not provided, the default connection will be used.connection.teams.default
to_email
string
YesThe email-id of the primary receipient.-
subject
string
YesThe subject of the email.-
content
string
YesThe content of the email.-
team_id
string
YesThe unique identifier of the team.-
channel_id
string
NoThe channel's unique identifier.-

Outputs

This pipeline has no outputs.

Tags

recommended = true