2016-04-02 17:03:29 +02:00
|
|
|
|
2016-06-04 16:52:18 +02:00
|
|
|
from typing import Any
|
|
|
|
|
2017-01-20 08:12:49 +01:00
|
|
|
from django.core.mail import mail_admins, mail_managers, send_mail
|
|
|
|
from django.core.management.commands import sendtestemail
|
2016-04-02 17:03:29 +02:00
|
|
|
|
2017-07-02 05:27:01 +02:00
|
|
|
from zerver.lib.send_email import FromAddress
|
|
|
|
|
2017-01-20 08:12:49 +01:00
|
|
|
class Command(sendtestemail.Command):
|
2017-10-26 11:35:57 +02:00
|
|
|
def handle(self, *args: Any, **kwargs: str) -> None:
|
2016-04-02 17:03:29 +02:00
|
|
|
subject = "Zulip Test email"
|
2017-01-20 08:12:49 +01:00
|
|
|
message = ("Success! If you receive this message, you've "
|
|
|
|
"successfully configured sending email from your "
|
2017-09-22 22:32:22 +02:00
|
|
|
"Zulip server. Remember that you need to restart "
|
|
|
|
"the Zulip server with /home/zulip/deployments/current/scripts/restart-server "
|
|
|
|
"after changing the settings in /etc/zulip before your changes will take effect.")
|
2017-07-02 05:27:01 +02:00
|
|
|
sender = FromAddress.SUPPORT
|
2017-01-20 08:12:49 +01:00
|
|
|
send_mail(subject, message, sender, kwargs['email'])
|
|
|
|
|
|
|
|
if kwargs['managers']:
|
|
|
|
mail_managers(subject, "This email was sent to the site managers.")
|
2016-04-02 17:03:29 +02:00
|
|
|
|
2017-01-20 08:12:49 +01:00
|
|
|
if kwargs['admins']:
|
|
|
|
mail_admins(subject, "This email was sent to the site admins.")
|