How do I send mails using PHP? I'm pretty much confused about what I should do.
What does PhpMailer do? If I have a normal HTML file like this how will I code it to mail?
<div class="mail-grids">
  <div class="col-md-6 mail-grid-left animated wow slideInLeft" data-wow-delay=".5s">
    <form action="#" method="post">
      <input name="Name" onblur="if (this.value == '') {this.value = 'Name';}" onfocus="this.value = '';" required="" type="text" value="Name">
      <input name="Email" onblur="if (this.value == '') {this.value = 'Email';}" onfocus="this.value = '';" required="" type="email" value="Email">
      <input name="Subject" onblur="if (this.value == '') {this.value = 'Subject';}" onfocus="this.value = '';" required="" type="text" value="Subject">
      <textarea name="Message" onblur="if (this.value == '') {this.value = 'Message...';}" onfocus="this.value = '';" required="" type="text">Message...
      </textarea>
      <input type="submit" value="Submit Now" style="margin-left: 378px;">
      </input>
      </input>
      </input>
      </input>
    </form>
  </div>
 
     
     
    