How to make the HTML form trigger E-mails with the information? [duplicate]

0

I do not know how to make the form of my website fire Emails with the information, I will post the snippet of code html of the form, it is bootstrap , however do not know how to make it work , if it's php, if it's javascript, not even idea.

I need it to fire me an email for a standard email, to capture this customer data.

<div class="row" id="contatti">
    <div class="container mt-5" >
        <div class="row" style="height:550px;">
            <div class="col-md-6 maps" >
                <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5172.722261873286!2d-46.561262731528764!3d-23.54447694530861!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce5e8c6898f0f3%3A0x486b3f79a4317fa9!2sR.+Cantagalo%2C+1396+-+Tatuap%C3%A9%2C+S%C3%A3o+Paulo+-+SP%2C+03319-001!5e0!3m2!1spt-PT!2sbr!4v1544548514818"width="600"
                  height="450"
                  frameborder="0"
                  style="border:0"
                  allowfullscreen></iframe>
            </div>
            <div class="col-md-6">
                <h2 class="text-uppercase mt-3 font-weight-bold text-white">Contato</h2>
                <form action="">
                    <div class="row">
                        <div class="col-lg-6">
                            <div class="form-group">
                                <input type="text" 
                                  class="form-control mt-2" 
                                  placeholder="Nome"
                                  required>
                            </div>
                        </div>
                        <div class="col-lg-6">
                            <div class="form-group">
                                <input type="text" 
                                  class="form-control mt-2"
                                  placeholder="Sobrenome"
                                  required>
                            </div>
                        </div>
                        <div class="col-lg-6">
                            <div class="form-group">
                                <input type="email" 
                                  class="form-control mt-2" 
                                  placeholder="Email"
                                  required>
                            </div>
                        </div>
                        <div class="col-lg-6">
                            <div class="form-group">
                                <input type="number" 
                                  class="form-control mt-2"
                                  placeholder="Telefone"
                                  required>
                            </div>
                        </div>
                        <div class="col-12">
                            <div class="form-group">
                                <textarea class="form-control" 
                                  id="exampleFormControlTextarea1" 
                                  placeholder="Mensagem"
                                  rows="3"
                                  required></textarea>
                            </div>
                        </div>
                        <div class="col-12">
                            <div class="form-group">
                                <div class="form-check"></div>
                            </div>
                        </div>
    
asked by anonymous 12.12.2018 / 14:20

0 answers