テンプレートを使用して Web サイトを開発しています。その中にお問い合わせフォームがあり、使いづらいです。インターネットから見つけたソースを使用して、必要なアドレスに電子メールを送信するように設定しようとしましたが、役に立ちませんでした。
お問い合わせフォームページのソースはこちらです。
<form id="ContactForm">
<div>
<div class="wrapper"> <span>Your Name:</span>
<input type="text" class="input" />
</div>
<div class="wrapper"> <span>Your E-mail:</span>
<input type="text" class="input" />
</div>
<div class="textarea_box"> <span>Your Message:</span>
<textarea name="textarea" cols="1" rows="1"></textarea>
</div>
<a href="#" class="button1"
onClick="document.getElementById('ContactForm').submit()">Send</a>
<a href="#" class="button1"
onClick="document.getElementById('ContactForm').reset()">Clear</a>
</div>
</form>