Posted by paul
2014-10-01

Emailing doesn't work for me, It gives an error.
But I want to disable it all together, since I don't want to get an email every time.

Where can I edit the page so it won't try to email?
Posted by Tom
2014-10-02

Hi,

>I want to disable it all together, since I don't want to get an email every time.

To disable emailing, open web/form/app/cls_ps_(table-name).inc.php and find the following code:
//-- [BEGIN] Send email
if ( !$this->SendRegEmail( $def,
$this->fs_reg_page3,
$this->config_email
) ) break;
//-- [END] Send email
You can delete it or comment it out like
//-- [BEGIN] Send email
//if ( !$this->SendRegEmail( $def,
// $this->fs_reg_page3,
// $this->config_email
//) ) break;
//-- [END] Send email