mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
10 lines
252 B
Python
10 lines
252 B
Python
from celery.decorators import task
|
|
from reddit.api import Inbox
|
|
import settings
|
|
|
|
@task(ignore_result=True)
|
|
def send_reddit_message(to, subject, message):
|
|
ib = Inbox(settings.REDDIT_USER, settings.REDDIT_PASSWORD)
|
|
ib.send(to, subject, message)
|
|
|