my issue is not sending email , issue is after click on submit nothing happens even echo not working I have a form in Bootstrap. There's a button called "submit" where when it's clicked the stuff that was entered in the form should be sent to an email address. Although when I click "Submit" nothing happens.
<?php
if (isset($_REQUEST['email'])) {
echo "sadfsdagsdgsdg";
}
?>
Html
<form method="post" class="form floating-label text-left form-validate" name="frm" id="frm" >
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" id="Name" name="Name" required data-rule-minlength="2" />
<label for="Name">Name</label>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" id="Contactnumber" name="Contactnumber" data-rule-number="true" required />
<label for="Contactnumber">Contact Number</label>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="email" class="form-control" id="Emailaddress" name="email" required />
<label for="Emailaddress">Email Address</label>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<select id="guestDetails" name="guestDetails" class="form-control select2-list dirty" required>
<option value="">Select your gang</option>
<option value='cap'>Cap - N1,000</option>
<option value='gele'>Gele - N2,500</option>
<option value='agbada'>Agbada - N13,500</option>
<option value='lace_gele'>Lace with Gele - N12,500</option>
<option value='lace_asooke'>Lace with Aso-Oke - N13,500</option>
<option value='adult_lace'>Adult's Lace with Aso-Oke - N20,000</option>
</select>
<label for="guestDetails">Cap/Gele/Lace/Agbada</label>
</div>
</div>
</div>
<div class="rsvp-button text-center">
<button type="submit" name="submit" value="submit" class="hvr-sweep-to-right">Submit</button>
</div>
</form>