blob: 00d2e74f83d9374b242cf406e8f0b0ea3110eff8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | # Managing emails
{! 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
    ```
 |