Hello,
I would to connect ActionButton with Outlook to send directly mail to interal support.
Do you have any ideas ?
Regards
Hello,
I would to connect ActionButton with Outlook to send directly mail to interal support.
Do you have any ideas ?
Regards
Hi @LM_Vin,
All applications have a βhelpβ button in the top right, where users can fill in a form that is send to all Developers of this application!
Also, the feedback form can be used as a link; https://company.viktor.ai/workspaces/workspace_id/app/tickets/new.
Hopefully that answers your question!
The easiest way to do this is just make a webhook in Zapier or Make. I personally use this method because dealing with Outlook tokens/API is a bit complicated.
Then make a POST request to the webhook:
data = {
"message": "Hello world",
"subject": "Webhook Recieved",
"email": "test@test.com"
}
response = requests.post("https://hook.us1.make.com/xxxx", params)