Reputation: 24896
I am building an app in which I need to let the user dial a phone number. Looking through the documentation, I could not figure out how to do that. There is a module for SMS, but none for voice. Is it possible to make phone calls from your Trigger.io app?
Upvotes: 0
Views: 88
Reputation: 2476
Yes, you can use a tel:
url, for example:
<a href="tel:123">Phone 123</a>
Upvotes: 2