[Solved] how do I configure email on a contact form?
Seding an email directly with javascript (as it´s your tag) is not possible, but you can open the user mail client: window.open(‘mailto:[email protected]’); It´s possible to have a predetermined subject and body using these variables: window.open(‘mailto:[email protected]?subject=example_subject&body=example_body’); 3 solved how do I configure email on a contact form?