Compare commits
2 commits
94452b3e41
...
55202ba3b0
Author | SHA1 | Date | |
---|---|---|---|
55202ba3b0 | |||
1e0e428037 |
2 changed files with 13 additions and 0 deletions
|
@ -77,3 +77,16 @@ def add_email(email):
|
|||
return False
|
||||
return False
|
||||
|
||||
|
||||
def delete_bounced_emails():
|
||||
url = settings.LISTMONK_API + 'bounces'
|
||||
auth = (settings.LISTMONK_USER, settings.LISTMONK_PASSWORD)
|
||||
r = requests.get(url + '?per_page=10000', auth=auth)
|
||||
ids = [sub['subscriber_id'] for sub in r['data']['results']]
|
||||
url = settings.LISTMONK_API + 'subscribers'
|
||||
for id in ids:
|
||||
r = requests.delete(url + '?id=%s' % id, auth=auth).json()
|
||||
if not r.get("data"):
|
||||
print(id)
|
||||
|
||||
|
||||
|
|
BIN
app/static/jpg/icon.jpg
Normal file
BIN
app/static/jpg/icon.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Loading…
Reference in a new issue