私はここで少し安っぽく、ゼロから作成するのではなく、自分のビジネス用の Web サイト テンプレートを盗みます。
しかし、私の質問は連絡先フォームにあります - どうすればそれを私のメールアドレスにメールで送信できますか?
<div id="contact_form">
<h4>Send us a message now!</h4>
<form method="post" name="contact" id="ok" action="#">
<label for="author">Name:</label> <input type="text" id="author" name="author" class="required input_field" />
<div class="cleaner_h10"></div>
<label for="email">Email:</label> <input type="text" id="email" name="email" class="validate-email required input_field" />
<div class="cleaner_h10"></div>
<label for="phone">Phone:</label> <input type="text" name="phone" id="phone" class="input_field" />
<div class="cleaner_h10"></div>
<label for="text">Message:</label> <textarea id="text" name="text" rows="0" cols="0" class="required"></textarea>
<div class="cleaner_h10"></div>
<input type="submit" class="submit_btn float_l" name="submit" id="submit" value="Send" />
<input type="reset" class="submit_btn float_r" name="reset" id="reset" value="Reset" />
</form>
</div>
</div>
それは私のフォームです-また、実際のフォームの背景に白を追加する必要があります(すべて黒)ので、ボックスが表示されません-どうすればそれを行うことができますか?
助けに乾杯