Please replace the ??? with your data!
[desc]:
I've almost got this form doing exactly what it needs to be. When a form is submitted I need the form data sent to an admin email account which is set up. I need it sent in a specific format so I have the email footer turned off and in the email header I have
"PracticeName":"{Practice-Name}" //Practice-Name is the id of the field
"ContactName":"{Client-Name}" //Client-Name is the id of the field
So the admin email I receive says
\"PracticeName\":\"House of pain\"
\"ContactName\":\"Matt\"
My question is this: Is there any way that I can receive the email without the escaping slashes? I need the quotes to stay though. I'd like to receive this in the admin email:
"PracticeName":"House of pain"
"ContactName":"Matt"
Any idea how this can be achieved? Also thanks again for a great plugin.