I'm looking for a method to have customer tick a terms and conditions acceptance box over gmail email. Is there anyway to do this?
We are also looking for a method of having a 'pay now' option thats only clickable when the ticks the checkbox. The 'pay now' option will be linked to a URL
Thanks in advance Dan
CodePudding user response:
maybe I have a reference similar about your problem regarding the Checkbox for terms and conditions in an email.
I hope this can help you
How to not submit form if there are validation fields outstanding?
CodePudding user response:
You could in theory include a POST or GET form in the HTML body of your Email.
<form action="[url of action page]" method="[get or post]">
<input type="checkbox" id="terms" name="terms">
<label for="terms">I accept the terms and conditions</label>
<br>
<input type="Submit" value="Submit">
</form>
But given that email client support is spotty at best this is not really recommendable.
You should probably include a link to a landing page instead where the customer can accept the terms & conditions.