Hello
1)Can i connect my email to customized contact form if so how can i do that, Please help.
2)How can i add default message in normal contact form message box?
Hi,
- see here .
- You can use code to check if the text box value is empty, and if so, do something:
const defaultValue = 'DEFAULT VALUE';
let value = $w('textbox1').value;
if (value === '') {
value = defaultValue;
}
// ... more code here
Hope this helps,
Liran.