If you want to establish some nice automated integration between two or more applications, you can make use of low-code tools like Zapier or Integromat. These tools have over 1000 apps available for integration.
You can link up multiple applications and create a smooth automation workflow. 😎
In this article, we’ll make use of Integromat to connect Discord to a form.
With the huge “+”, we can start adding an application and create connections with other applications.
We’ll set up a webhook URL that we can send form data to and trigger appropriate reactions
(Never mind my sketches, you deserve a better artist 😭)
action
attribute. (This is just a demo form, you can choose how to send data and how your application should react to each form submission):<!DOCTYPE html>
<html lang="en">
<head>
<title>Form</title>
</head>
<body>
<form method="post" action="https://hook.integromat.com/hxmcktv6o41acj46lcuw6vio7iqhyisg">
<label for="firstname">First name</label>
<input type="text" name="firstname" id="firstname">
<br />
<br />
<label for="message">Message</label>
<br />
<textarea name="message" id="message" cols="30" rows="10"></textarea>
<button type="submit">Submit</button>
</form>
</body>
</html>
I hope you find this article helpful in creating an automated workflow between some applications you regularly use.
Though Integromat free plan has some limitations, it can pretty much satisfy some of your automation needs. This is not any form of promotion, I am only sharing a tool I find useful.
Thanks for reading!
First published here