logo

pleroma

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

digest.md (573B)


  1. # Managing digest emails
  2. {! backend/administration/CLI_tasks/general_cli_task_info.include !}
  3. ## Send digest email since given date (user registration date by default) ignoring user activity status.
  4. === "OTP"
  5. ```sh
  6. ./bin/pleroma_ctl digest test <nickname> [since_date]
  7. ```
  8. === "From Source"
  9. ```sh
  10. mix pleroma.digest test <nickname> [since_date]
  11. ```
  12. Example:
  13. === "OTP"
  14. ```sh
  15. ./bin/pleroma_ctl digest test donaldtheduck 2019-05-20
  16. ```
  17. === "From Source"
  18. ```sh
  19. mix pleroma.digest test donaldtheduck 2019-05-20
  20. ```