Chethiya sachin
Chethiya sachin

Reputation: 55

Automatic Email Send in Microsoft Bot Framework Composer

I am developing chatbot using Microsoft bot framework composer. I added this chatbot to Microsoft Teams channel as well. It is a IT Help desk chatbot. We have a separate ticketing system, whenever user send a email to [email protected], the support ticket would be automatically created.

I want my chatbot to send a email automatically to create a ticket when the user needs to create a ticket using chatbot.

Upvotes: 3

Views: 935

Answers (1)

Nicolas R
Nicolas R

Reputation: 14619

There are a lot of ways to do that. For example, you can use "Send an HTTP request" action in the composer, and call an endpoint where you do this email processing (for example: you can quickly test by using a logic app which will be your http endpoint, and inside this logic app use an email connector - outlook or other)

More details on the "send an http request" step here

And a tutorial to send an email with Logic Apps here

Upvotes: 1

Related Questions