Hi,
I would like to know if it is possible to trigger an email after I add an existing Form in Teams. I have searched the forum and found lots of information on how to trigger an email after a Form has been submitted, but not when an existing form template is added.
Apologies if this has been discussed in other threads.
Thanks
Solved! Go to Solution.
Hi @Marty3012,
Currently Flow has no way of identifying the type of new message, so there is no way to monitor if an existing form has been added.
If you want to function that you mentioned to be supported in Microsoft Flow, please submit an idea to Flow Ideas Forum:
https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas
In addition, I found that if you add Forms, the name of the attachment will start with "Fill". Maybe you could use the following method to judge:
Expression:
@and(startsWith(items('Apply_to_each')['name'], 'Fill'),equals(body('Html_to_text'), 'Tab conversation has begun.'))
Best Regards,
Barry
Hi @Marty3012,
Currently Flow has no way of identifying the type of new message, so there is no way to monitor if an existing form has been added.
If you want to function that you mentioned to be supported in Microsoft Flow, please submit an idea to Flow Ideas Forum:
https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas
In addition, I found that if you add Forms, the name of the attachment will start with "Fill". Maybe you could use the following method to judge:
Expression:
@and(startsWith(items('Apply_to_each')['name'], 'Fill'),equals(body('Html_to_text'), 'Tab conversation has begun.'))
Best Regards,
Barry
That works! thanks