Contact Page not working (php)

139 views Asked by At

So I have made a contact page in modx with this code

<!-- Start Contact Form -->


<div id="contact-form" class="contatct-form">
    <div class="loader"></div>
    <form action="mail.php" class="contactForm" name="cform" method="post">
    <div class="row">

I have also uploaded the mail.php file into assets but it still doesn't seem to work. So far I tried path/to/assets/mail.php which didn't work either.

Any help would be appreciated

2

There are 2 answers

0
Vasis On
2
Saravanan Arunagiri On

Try to Change your form action as following path look like ..assets/example.php

 <div id="contact-form" class="contatct-form">
                        <div class="loader"></div>
                        <form action="..yourpath/mail.php" class="contactForm" name="cform" method="post">
                            <div class="row">