Add missing libmagic for image upload
[akkoma] / docs / administration / CLI_tasks / email.md
1 # Managing emails
2
3 {! backend/administration/CLI_tasks/general_cli_task_info.include !}
4
5 ## Send test email (instance email by default)
6
7 ```sh tab="OTP"
8 ./bin/pleroma_ctl email test [--to <destination email address>]
9 ```
10
11 ```sh tab="From Source"
12 mix pleroma.email test [--to <destination email address>]
13 ```
14
15
16 Example:
17
18 ```sh tab="OTP"
19 ./bin/pleroma_ctl email test --to root@example.org
20 ```
21
22 ```sh tab="From Source"
23 mix pleroma.email test --to root@example.org
24 ```