Form Block "From E-Mail" Address Fix Help
Permalink
The Form Block does not submit notifications from the correct address and defaults to the Super User e-mail of the site. The function that finds a valid e-mail from the form does not work.
Here is the section of controller.php in question:
I have replaced it with this:
This works great as long as the e-mail address is always Question2.
Any help on fixing the string search so it finds the e-mail address from the form?
Here is the section of controller.php in question:
I have replaced it with this:
$formFormEmailAddress = $_POST["Question2"];
This works great as long as the e-mail address is always Question2.
Any help on fixing the string search so it finds the e-mail address from the form?
I replaced the original
with the following