eccles
01-03-2007, 10:31 AM
Hi
Firstly I must congratulate you on a great script :applause:
My problem is that no emails are being sent from adding a link, suggesting a category or any of the other options including emailing a link suggestor from the control panel.
All the email options have been checked as send email and saved. I have checked with my hosting company and they have given the following example php scripts for sending feedback from a form.
feedback.php
<FORM method=post action="sendmail.php">
Email: <INPUT name="email" type="text"><br>
Message:<br>
<TEXTAREA name="message">
</textarea><br>
<input type=submit>
</FORM>
sendmail.php
<?php
mail("Youremail@yourdomain.co.uk", "Feedback Form results", $_REQUEST[message], "From: $_REQUEST[email]", "-f".$_REQUEST[email]);
header( "Location: http://www.yourdomain.co.uk/thankyou.html" );
?>
What do I need to do to incorporate this into the eSyndicat scripts?
Any help would be greatly appreciated.
Firstly I must congratulate you on a great script :applause:
My problem is that no emails are being sent from adding a link, suggesting a category or any of the other options including emailing a link suggestor from the control panel.
All the email options have been checked as send email and saved. I have checked with my hosting company and they have given the following example php scripts for sending feedback from a form.
feedback.php
<FORM method=post action="sendmail.php">
Email: <INPUT name="email" type="text"><br>
Message:<br>
<TEXTAREA name="message">
</textarea><br>
<input type=submit>
</FORM>
sendmail.php
<?php
mail("Youremail@yourdomain.co.uk", "Feedback Form results", $_REQUEST[message], "From: $_REQUEST[email]", "-f".$_REQUEST[email]);
header( "Location: http://www.yourdomain.co.uk/thankyou.html" );
?>
What do I need to do to incorporate this into the eSyndicat scripts?
Any help would be greatly appreciated.