[PR #1091] [MERGED] feat(backend): add scheduled send functionality #1262

Closed
opened 2026-02-25 21:37:43 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/cypht-org/cypht/pull/1091
Author: @amaninyumu1
Created: 6/15/2024
Status: Merged
Merged: 2/13/2025
Merged by: @kroky

Base: masterHead: Cypht-delay-send-later-scheduled-sending


📝 Commits (10+)

  • e77475c feat(backend): add scheduled send functionality resolve conflicts
  • 6e35072 feat(backend): add scheduled send functionality
  • 3dcce00 feat(backend): clarify reload_and_redirect logic by removing unnecessary isReloading
  • 1b3678d feat(backend): refactor the code to fix the server error Uncaught Error: Call to undefined method Hm_Mailbox::get_mailbox_status()
  • ba30412 feat(backend): add scheduled send functionality resolve conflicts in modules/imap/functions.php
  • edfbcc7 feat(backend): change Hm_IMAP_List to Hm_Mailbox
  • 37b4dc4 Send scheduled messages via ajax
  • 115fb91 Make reschedule sending in a working state
  • aa31793 Make background sending scheduled messages work
  • 3221593 Fix showing wait message while no draft is saving

📊 Changes

38 files changed (+715 additions, -113 deletions)

View changed files

📝 language/az.php (+1 -0)
📝 language/de.php (+1 -0)
📝 language/en.php (+1 -0)
📝 language/es.php (+1 -0)
📝 language/et.php (+1 -0)
📝 language/fa.php (+1 -0)
📝 language/fr.php (+1 -0)
📝 language/hu.php (+1 -0)
📝 language/id.php (+1 -0)
📝 language/it.php (+1 -0)
📝 language/ja.php (+1 -0)
📝 language/nl.php (+1 -0)
📝 language/pt-BR.php (+1 -0)
📝 language/ro.php (+1 -0)
📝 language/ru.php (+1 -0)
📝 language/zh-Hans.php (+1 -0)
📝 lib/servers.php (+26 -0)
📝 modules/core/functions.php (+109 -0)
📝 modules/core/handler_modules.php (+9 -0)
📝 modules/core/hm-mailbox.php (+7 -0)

...and 18 more files

📄 Description

issue
issue


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/cypht-org/cypht/pull/1091 **Author:** [@amaninyumu1](https://github.com/amaninyumu1) **Created:** 6/15/2024 **Status:** ✅ Merged **Merged:** 2/13/2025 **Merged by:** [@kroky](https://github.com/kroky) **Base:** `master` ← **Head:** `Cypht-delay-send-later-scheduled-sending` --- ### 📝 Commits (10+) - [`e77475c`](https://github.com/cypht-org/cypht/commit/e77475c9cda35da968c3040063f10c18b5ef22ba) feat(backend): add scheduled send functionality resolve conflicts - [`6e35072`](https://github.com/cypht-org/cypht/commit/6e35072c289395d389d22facb8b7ef49dd3fdad8) feat(backend): add scheduled send functionality - [`3dcce00`](https://github.com/cypht-org/cypht/commit/3dcce00efea615294d22b04a1b41b7819838f01a) feat(backend): clarify reload_and_redirect logic by removing unnecessary isReloading - [`1b3678d`](https://github.com/cypht-org/cypht/commit/1b3678d741d00f048e1efbf06af3a1f4ebb26058) feat(backend): refactor the code to fix the server error Uncaught Error: Call to undefined method Hm_Mailbox::get_mailbox_status() - [`ba30412`](https://github.com/cypht-org/cypht/commit/ba304126de342b0f40b8b51c178a47bddbca2204) feat(backend): add scheduled send functionality resolve conflicts in modules/imap/functions.php - [`edfbcc7`](https://github.com/cypht-org/cypht/commit/edfbcc73ac6aa41aeda30484425ca99b5ee35f72) feat(backend): change Hm_IMAP_List to Hm_Mailbox - [`37b4dc4`](https://github.com/cypht-org/cypht/commit/37b4dc4d1b154b443dd70244802ea5aaaa7ae632) Send scheduled messages via ajax - [`115fb91`](https://github.com/cypht-org/cypht/commit/115fb913a3bfc6542b7f739f29bfb2bb556637c0) Make reschedule sending in a working state - [`aa31793`](https://github.com/cypht-org/cypht/commit/aa317932cb8edf1190e8660bd91c3a3e4914afe4) Make background sending scheduled messages work - [`3221593`](https://github.com/cypht-org/cypht/commit/32215934c5d35f55f0ea2b4590dd75d4a98134b9) Fix showing wait message while no draft is saving ### 📊 Changes **38 files changed** (+715 additions, -113 deletions) <details> <summary>View changed files</summary> 📝 `language/az.php` (+1 -0) 📝 `language/de.php` (+1 -0) 📝 `language/en.php` (+1 -0) 📝 `language/es.php` (+1 -0) 📝 `language/et.php` (+1 -0) 📝 `language/fa.php` (+1 -0) 📝 `language/fr.php` (+1 -0) 📝 `language/hu.php` (+1 -0) 📝 `language/id.php` (+1 -0) 📝 `language/it.php` (+1 -0) 📝 `language/ja.php` (+1 -0) 📝 `language/nl.php` (+1 -0) 📝 `language/pt-BR.php` (+1 -0) 📝 `language/ro.php` (+1 -0) 📝 `language/ru.php` (+1 -0) 📝 `language/zh-Hans.php` (+1 -0) 📝 `lib/servers.php` (+26 -0) 📝 `modules/core/functions.php` (+109 -0) 📝 `modules/core/handler_modules.php` (+9 -0) 📝 `modules/core/hm-mailbox.php` (+7 -0) _...and 18 more files_ </details> ### 📄 Description [issue](https://github.com/cypht-org/cypht/issues/572) [issue](https://github.com/cypht-org/cypht/issues/576) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 21:37:43 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cypht#1262
No description provided.