Hello,
Now I have a question that needs your help, I don't know how to solve it.
The question is: when somebody submits a form to me on the website, want an auto-reply email send to there tell there I got an email from him or her.
The code is here, I used SMTP, but can't work, please tell me how to check it, thank you very much.
<div class="form-widget">
<div class="form-result"></div>
<form class="mb-0" id="template-contactform" name="template-contactform" action="/include/form.php" method="post" novalidate="novalidate">
<input type="hidden" name="subject" value="New Response from Contact Page">
<div class="form-process">
<div class="css3-spinner">
<div class="css3-spinner-scaler"></div>
</div>
</div>
<div class="row">
<div class="col-md-6 form-group">
<label for="template-contactform-firstname">First Name <small></small></label>
<input type="text" id="template-contactform-name" name="template-contactform-name" value="" class="sm-form-control required">
</div>
<div class="col-md-6 form-group">
<label for="template-contactform-lastname">Last Name <small></small></label>
<input type="text" id="template-contactform-lastname" name="template-contactform-lastname" value="" class="required sm-form-control">
</div>
<div class="w-100"></div>
<div class="col-md-6 form-group">
<label for="template-contactform-phone">Phone</label>
<input type="text" id="template-contactform-phone" name="template-contactform-phone" value="" class="sm-form-control">
</div>
<div class="col-md-6 form-group">
<label for="template-contactform-email">Email <small></small></label>
<input type="email" id="template-contactform-email" name="email" value="" class="required sm-form-control">
</div>
<div class="w-100"></div>
<div class="col-md-6 form-country">
<label for="template-contactform-country">Country</label>
<input type="text" id="template-contactform-country" name="template-contactform-country" value="" class="sm-form-control">
</div>
<div class="col-md-6 form-group">
<label for="template-contactform-company">Company</label>
<input type="text" id="template-contactform-company" name="company" value="" class="sm-form-control">
</div>
<div class="w-100"></div>
<div class="col-12 form-group">
<label for="template-contactform-message">Message <small></small></label>
<textarea class="required sm-form-control" id="template-contactform-message" name="template-contactform-message" rows="6" cols="30"></textarea>
</div>
<div class="col-12 form-group d-none">
<input type="text" id="template-contactform-botcheck" name="template-contactform-botcheck" value="" class="sm-form-control">
</div>
<div class="col-12 form-group">
<button class="button button-3d m-0" type="submit" id="template-contactform-submit" name="template-contactform-submit" value="submit">Send Message</button>
</div>
</div>
<input type="hidden" name="prefix" value="template-contactform-">
<input type="hidden" name="replyto" value="template-contactform-email">
<input type="hidden" name="autoresponder" value="true">
</form>
</div>
