diff --git a/app/celery/tasks.py b/app/celery/tasks.py index 7c81e9984..a94da9f44 100644 --- a/app/celery/tasks.py +++ b/app/celery/tasks.py @@ -287,12 +287,6 @@ def send_sms(service_id, notification_id, encrypted_notification, created_at): current_app.logger.exception(e) -@notify_celery.task(name="send-email-v2") -def send_email_v2(service_id, notification_id, - encrypted_notification, created_at, reply_to_addresses=None): - send_email(service_id, notification_id, encrypted_notification, created_at, reply_to_addresses=None) - - @notify_celery.task(name="send-email") def send_email(service_id, notification_id, encrypted_notification, created_at, reply_to_addresses=None): task_start = monotonic()