phpdave11 / php-survey-builder

A PHP web application that lets you create surveys and collect survey responses. Uses SQLite3 by default and also supports MySQL and PostgreSQL.
MIT License
70 stars 47 forks source link

Email notifications for admin #14

Open herneise opened 2 hours ago

herneise commented 2 hours ago

hi! is it possible to add "Email notifications for admin" when a new survey posted? is it hard to add? maybe , if you give us necessary update, we can add it manually?

please inform. thanks

herneise commented 2 hours ago

actually i made it( if it is interensting for somebody) :

open with text editor the "survey_thank_you.php" file add to the end the codes between the lines:


$to = "somebody@example.com"; $subject = "My subject"; $txt = "Hello world!"; $headers = "From: webmaster@example.com" . "\r\n" . "CC: somebodyelse@example.com";

mail($to,$subject,$txt,$headers); ?>


change the sender receiver message etc. you will receive everytime when sombody make a new entry. ps: be sure that your php web server configured for sending mails:)

thanks