Hi everyone,
I am trying to create a flow which needs to send HTML form in subject. When sending the below code in body of email, I am not getting the input text box and submit button. Please help me to send a email with HTML forms
<html>
<body>
<h1>The input element</h1>
<form action=/sampleurl method="post">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Regards,
Mahmood