Email Notification After Form Submission Problem

Plus the email line I talked about.

Also this line here.
const recipient = “dora@opendoormedia.ca”
Needs to be the email value on the page and not an actual email.
const recipient = $w(" #emailInput ").value;
// ignore the double id name, forum error.

It needs to be whatever your email is in the page setup which for yourself I think was input4.
const recipient = $w(“#input4”).value;

Although it would be much easier if you renamed the element ids to match up with the page and the workings, so for instance input4 would be known as email instead, much easier.
const recipient = $w(“#email”).value;