7 lines
150 B
Python
7 lines
150 B
Python
import dramatiq
|
|
from django.core.management import call_command
|
|
|
|
|
|
@dramatiq.actor()
|
|
def send_queued_mail_task():
|
|
call_command('send_queued_mail')
|