How to Link email to Customized Contact form.

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,

  1. see here .
  2. 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.