mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
11 lines
220 B
Python
11 lines
220 B
Python
# Copyright (c) 2016 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.core.mail.backends.base import BaseEmailBackend
|
|
|
|
|
|
class AWXBaseEmailBackend(BaseEmailBackend):
|
|
|
|
def format_body(self, body):
|
|
return body
|