mirror of https://github.com/zulip/zulip.git
20 lines
611 B
Python
20 lines
611 B
Python
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.decorator import internal_notify_view
|
|
from zerver.lib.email_mirror import mirror_email_message
|
|
from zerver.lib.request import REQ, has_request_variables
|
|
from zerver.lib.response import json_error, json_success
|
|
|
|
|
|
@internal_notify_view(False)
|
|
@has_request_variables
|
|
def email_mirror_message(
|
|
request: HttpRequest,
|
|
rcpt_to: str = REQ(),
|
|
msg_base64: str = REQ(),
|
|
) -> HttpResponse:
|
|
result = mirror_email_message(rcpt_to, msg_base64)
|
|
if result["status"] == "error":
|
|
return json_error(result["msg"])
|
|
return json_success()
|