How to Setup send email function in html form using any programing language? [closed]

The html form code given as follow how to setup this contact form to get email to my account
using any language:

<form action="" method="post">
    <div class="fields">
        <div class="field name">
            <input type="text" placeholder="Name" name="name" required>
        </div>
        <div class="field email">
            <input type="email" placeholder="Email" name="email" required>
        </div>
    </div>
    <div class="field">
        <input type="text" placeholder="Subject" name="subject" required>
    </div>
    <div class="field textarea">
        <textarea cols="30" rows="10" placeholder="Message.." name="message" required> 
        </textarea>
    </div>
    <div class="button-area">
        <button type="submit">Send message</button>
    </div>
</form>
<!-- html form code  -->