Sending SMS with Twilio
What You'll Need
Prerequisites for the app
Frontend
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>SMS service</title>
</head>
<body>
<div id="contact">
<h1>Send an SMS</h1>
<form action="/tw" method="post">
<fieldset>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" placeholder="Enter your full name" /><br><br>
<label for="phnum">Mobile number with country code:</label><br>
<input type="num" id="num" name="num" placeholder="Enter your number" /><br><br>
<label for="message">Message:</label><br>
<textarea id="message" placeholder="Message" name="message"></textarea><br><br>
<input type="submit" value="Send message" />
</fieldset>
</form>
</div>
</body>
</html>Dependencies
Backend
Last updated