mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
11 lines
283 B
PHP
Executable file
11 lines
283 B
PHP
Executable file
#!/usr/bin/php
|
|
<?
|
|
require_once('/standardebooks.org/web/lib/Core.php');
|
|
|
|
// Delete unconfirmed newsletter subscribers who are more than a week old.
|
|
Db::Query('
|
|
DELETE
|
|
from NewsletterSubscriptions
|
|
where IsConfirmed = false
|
|
and datediff(utc_timestamp(), Created) >= 7
|
|
');
|