Skip to content

Commit

Permalink
Merge pull request #107 from aandis/comma-separated-to-email-docs
Browse files Browse the repository at this point in the history
Update docs to reflect comma separated to-emails support.
  • Loading branch information
mnaberez committed Dec 22, 2021
2 parents bc7986e + d7a792f commit 7d02b88
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/crashmailbatch.rst
Expand Up @@ -28,7 +28,7 @@ Command-Line Syntax

.. cmdoption:: -t <destination email>, --toEmail=<destination email>

Specify an email address to which crash notification messages are sent.
Specify comma separated email addresses to which crash notification messages are sent.

.. cmdoption:: -f <source email>, --fromEmail=<source email>

Expand Down
2 changes: 1 addition & 1 deletion docs/crashsms.rst
Expand Up @@ -26,7 +26,7 @@ Command-Line Syntax

.. cmdoption:: -t <destination email>, --toEmail=<destination email>

Specify an email address to which crash notification messages are sent.
Specify comma separated email addresses to which crash notification messages are sent.

.. cmdoption:: -f <source email>, --fromEmail=<source email>

Expand Down
2 changes: 1 addition & 1 deletion docs/fatalmailbatch.rst
Expand Up @@ -27,7 +27,7 @@ Command-Line Syntax

.. cmdoption:: -t <destination email>, --toEmail=<destination email>

Specify an email address to which fatal start notification messages are sent.
Specify comma separated email addresses to which fatal start notification messages are sent.

.. cmdoption:: -f <source email>, --fromEmail=<source email>

Expand Down
2 changes: 1 addition & 1 deletion superlance/crashmailbatch.py
Expand Up @@ -37,7 +37,7 @@
This means that all events in each cycle are batched together
and sent as a single email
--toEmail - the email address to send alerts to
--toEmail - the email address(es) to send alerts to - comma separated
--fromEmail - the email address to send alerts from
Expand Down
2 changes: 1 addition & 1 deletion superlance/crashsms.py
Expand Up @@ -45,7 +45,7 @@
This means that all events in each cycle are batched together
and sent as a single email
-t,--toEmail - the email address to send alerts to. Mobile providers
-t,--toEmail - the comma separated email addresses to send alerts to. Mobile providers
tend to allow sms messages to be sent to their phone numbers
via an email address (e.g.: 1234567890@txt.att.net)
Expand Down
4 changes: 2 additions & 2 deletions superlance/fatalmailbatch.py
Expand Up @@ -39,7 +39,7 @@
This means that all events in each cycle are batched together
and sent as a single email
--toEmail - the email address to send alerts to
--toEmail - the email address(es) to send alerts to - comma separated
--fromEmail - the email address to send alerts from
Expand Down Expand Up @@ -75,4 +75,4 @@ def main():
fatal.run()

if __name__ == '__main__':
main()
main()

0 comments on commit 7d02b88

Please sign in to comment.