8 lines
150 B
Python
8 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')
|