mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-10 01:51:49 -05:00
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
|