27-May-2012, 05:08 PM
I would like to disable the notify function on the form and have subscribers notified of new comments by default unless they opt out by unsubscribing via an email notification.
Can this be done by changing the default setting of 'is_confirmed' to '1' in this query,
mysql_query("INSERT INTO `".$mysql_table_prefix."subscribers` (name, email, page_id, token, is_confirmed, is_active, dated) VALUES ('$name', '$email', '$page_id', '$token', '0', '0', NOW())"), in includes/functions/processor.php? Or is there a better way to achieve this?
Many thanks for the help.
Can this be done by changing the default setting of 'is_confirmed' to '1' in this query,
mysql_query("INSERT INTO `".$mysql_table_prefix."subscribers` (name, email, page_id, token, is_confirmed, is_active, dated) VALUES ('$name', '$email', '$page_id', '$token', '0', '0', NOW())"), in includes/functions/processor.php? Or is there a better way to achieve this?
Many thanks for the help.