Forum
Calc Builder Support
Calc Builder supportForums
Public write access is disabled. Please login
Re: Copy of email send & remove form at results 19.04.2014 10:04
Hi,
there's no option to configure a blank copy, but you can introduce a code tweak at the function in charge of sending the email and force a blind copy to your preferred destination. Edit:
joomla\components\com_calcbuilder\models\calcbuilder.php
function getEnvioWrapper ,about line 667 you will find:
$mailer->addRecipient($email);
add this new line below:
$mailer->addBCC("youremailaddress@mail.com");
About removing the form, you can get it adding a javascript instruction in order to hide input section. Go to your calculator configuration->javascript->executed after calculate execution, and add
CB(".cb_form").hide();
This should do the work.
Regards
Moonsoft Team
www.moonsoft.es
there's no option to configure a blank copy, but you can introduce a code tweak at the function in charge of sending the email and force a blind copy to your preferred destination. Edit:
joomla\components\com_calcbuilder\models\calcbuilder.php
function getEnvioWrapper ,about line 667 you will find:
$mailer->addRecipient($email);
add this new line below:
$mailer->addBCC("youremailaddress@mail.com");
About removing the form, you can get it adding a javascript instruction in order to hide input section. Go to your calculator configuration->javascript->executed after calculate execution, and add
CB(".cb_form").hide();
This should do the work.
Regards
Moonsoft Team
www.moonsoft.es