Hi I need to add an radio button in outlook email body Does anyone knows how to add a radio button? Please help
Hi @jewel,
you can click the check box “IsBodyHtml” in options under properties of send outlook activity. Next, add or attach your desired html code into the body (within double quotes).
Revert here if you are still facing any issue.
Regards,
SP
1 Like
hi it doesnt seem to work for radio buttons or text area.
The output in the mail looks like this :
The code i had tried to embed was this :
<style>
body {
text-align: center;
}
h2 {
color: green;
}
</style>
GeeksforGeeks
<h4>
Select Gender
</h4>
Male
<input type='radio' checked=true name='user_gender'>
Female
<input type='radio' name='user_gender'>
----------------------