diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-09-08 16:39:08 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-09-08 16:39:08 -0500 |
commit | 23ca5f75afa7369ff52772c39dc3324e9402b230 (patch) | |
tree | 8365fbcba394a64b0fbeb854ae78a9abc74bfbe4 /docs | |
parent | 7c055af567e08be7f171a2fb687926bef5920899 (diff) | |
download | pleroma-23ca5f75afa7369ff52772c39dc3324e9402b230.tar.gz pleroma-23ca5f75afa7369ff52772c39dc3324e9402b230.zip |
Make it possible to bulk send confirmation emails to all unconfirmed users
Diffstat (limited to 'docs')
-rw-r--r-- | docs/administration/CLI_tasks/email.md | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/administration/CLI_tasks/email.md b/docs/administration/CLI_tasks/email.md index 00d2e74f8..439ea877a 100644 --- a/docs/administration/CLI_tasks/email.md +++ b/docs/administration/CLI_tasks/email.md @@ -1,4 +1,4 @@ -# Managing emails +# E-Mail administration tasks {! backend/administration/CLI_tasks/general_cli_task_info.include !} @@ -30,3 +30,17 @@ Example: ```sh mix pleroma.email test --to root@example.org ``` + +## Send confirmation emails to all unconfirmed user accounts + +=== "OTP" + + ```sh + ./bin/pleroma_ctl email send_confirmation_mails + ``` + +=== "From Source" + + ```sh + mix pleroma.email send_confirmation_mails + ``` |