Note that there are some explanatory texts on larger screens.

plurals
  1. POPHP mail not sending email
    primarykey
    data
    text
    <p>In my HTML page I've created a response form. The action is that te values are sent to a PHP file. This PHP file has to take care of sending an email out. When entered values in the fields and pushing the submit button I get my "success" page (and, for that matter when I filled it out wrong I get my error page). So that part seems to be working fine.</p> <p>I've installed MAMP on my mac as the PHP server. In the php.ini file the path for sendmail is set to <code>/usr/sbin/sendmail -t -i</code></p> <p>As far as I can see is this right. However, no mail is sent.</p> <p>Any suggestions? Please advice.</p> <p>See the code below found on the internet and changed:</p> <pre><code>&lt;?php /* This first bit sets the email address that you want the form to be submitted to. You will need to change this value to a valid email address that you can access. */ $webmaster_email = "someone@somewher.com"; /* This bit sets the URLs of the supporting pages. If you change the names of any of the pages, you will need to change the values here. */ $feedback_page = "contact.html"; $error_page = "error_message.html"; $thankyou_page = "thank_you.html"; /* This next bit loads the form field data into variables. If you add a form field, you will need to add it here. */ $naam = $_REQUEST['naam']; $email = $_REQUEST['email'] ; $telefoon = $_REQUEST['telefoon']; $website = $_REQUEST['website']; $opmerkingen = $_REQUEST['opmerkingen'] ; /* The following function checks for email injection. Specifically, it checks for carriage returns - typically used by spammers to inject a CC list. */ function isInjected($str) { $injections = array('(\n+)', '(\r+)', '(\t+)', '(%0A+)', '(%0D+)', '(%08+)', '(%09+)' ); $inject = join('|', $injections); $inject = "/$inject/i"; if(preg_match($inject,$str)) { return true; } else { return false; } } // If the user tries to access this script directly, redirect them to the feedback form, if (!isset($_REQUEST['email'])) { header( "Location: $feedback_page" ); } // If the form fields are empty, redirect to the error page. elseif (empty($naam) || empty($email) || empty($opmerkingen)) { header( "Location: $error_page" ); } // If email injection is detected, redirect to the error page. elseif ( isInjected($email_address) ) { header( "Location: $error_page" ); } // If we passed all previous tests, send the email then redirect to the thank you page. else { mail( "$webmaster_email", "Contactformulier van OpenWater", $comments, "From: $email" ); header( "Location: $thankyou_page" ); } ?&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload