Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Email notifications for admin #14

Open
herneise opened this issue Sep 22, 2024 · 1 comment
Open

Email notifications for admin #14

herneise opened this issue Sep 22, 2024 · 1 comment

Comments

@herneise
Copy link

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
Copy link
Author

herneise commented Sep 22, 2024

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 = "[email protected]";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]" . "\r\n" .
"CC: [email protected]";

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant