pleroma/docs/administration/CLI_tasks/email.md
Alexander Strizhakov cebe3c7def Fix for dropping posts/notifs in WS when mix task is executed
- start oban in mix tasks with empty queues, plugins and crontab
- fix for update_users_following_followers_counts
- fix for removed logo.png
- typo in resend confirmation emails mix task docs
- fix for uploads mix task (start Majic.Pool)
- fix for creating user mix task (start :fast_html app)
2020-12-14 11:02:32 -06:00

763 B

EMail administration tasks

{! backend/administration/CLI_tasks/general_cli_task_info.include !}

Send test email (instance email by default)

=== "OTP"

```sh
 ./bin/pleroma_ctl email test [--to <destination email address>]
```

=== "From Source"

```sh
mix pleroma.email test [--to <destination email address>]
```

Example:

=== "OTP"

```sh
./bin/pleroma_ctl email test --to root@example.org
```

=== "From Source"

```sh
mix pleroma.email test --to root@example.org
```

Send confirmation emails to all unconfirmed user accounts

=== "OTP"

```sh
 ./bin/pleroma_ctl email resend_confirmation_emails
```

=== "From Source"

```sh
mix pleroma.email resend_confirmation_emails
```