mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
6 lines
255 B
PHP
6 lines
255 B
PHP
<?
|
|
require_once('/standardebooks.org/web/lib/Core.php');
|
|
|
|
// Delete unconfirmed newsletter subscribers who are more than a week old
|
|
Db::Query('delete from NewsletterSubscribers where IsConfirmed = false and datediff(utc_timestamp(), Timestamp) >= 7');
|
|
?>
|