Quote:
|
Originally Posted by Billy Is there a way to easily send an administrative message to all accounts in all domains on the system? |
I haven't seen a built in way to do that, and indeed, that would be a useful feature.
In the meantime, you can do this from the command line. The quick and dirty way is just like this:
mail -s "Hello World" `zmprov GetAllAccounts` < email_body.txt
The "zmprov GetAllAccounts" command returns a list of all the accounts, which is the email address of each user. So, the above would send an email to all accounts, with the subject "Hello World", using the message body contained in "email_body.txt".
You could also use "zmprov GetAllAccounts" to get your email address list, then just load that into Thunderbird or Outlook or whatever, then send it from there.
Have a good one,
-Eric