[Solved] how do I configure email on a contact form?

[ad_1]

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

[ad_2]

solved how do I configure email on a contact form?