send_custom_email: Support specifying sender email address.

This commit is contained in:
Tim Abbott 2024-10-24 12:37:14 -07:00
parent 481ef24b53
commit 3310aed462
1 changed files with 4 additions and 0 deletions

View File

@ -85,6 +85,10 @@ class Command(ZulipBaseCommand):
"--from-name",
help="From line for the email. It can be declared in Markdown file in headers",
)
parser.add_argument(
"--from-address",
help="From email address",
)
parser.add_argument("--reply-to", help="Optional reply-to line for the email")
parser.add_argument(