logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

email.md (763B)


  1. # EMail administration tasks
  2. {! backend/administration/CLI_tasks/general_cli_task_info.include !}
  3. ## Send test email (instance email by default)
  4. === "OTP"
  5. ```sh
  6. ./bin/pleroma_ctl email test [--to <destination email address>]
  7. ```
  8. === "From Source"
  9. ```sh
  10. mix pleroma.email test [--to <destination email address>]
  11. ```
  12. Example:
  13. === "OTP"
  14. ```sh
  15. ./bin/pleroma_ctl email test --to root@example.org
  16. ```
  17. === "From Source"
  18. ```sh
  19. mix pleroma.email test --to root@example.org
  20. ```
  21. ## Send confirmation emails to all unconfirmed user accounts
  22. === "OTP"
  23. ```sh
  24. ./bin/pleroma_ctl email resend_confirmation_emails
  25. ```
  26. === "From Source"
  27. ```sh
  28. mix pleroma.email resend_confirmation_emails
  29. ```