feat: 将 TODO 提醒邮件纳入模板系统

- 新增 todo_urge 邮件类型
- 支持自定义 TODO 提醒邮件的主题和内容
- 可用占位符:todo_content、todo_id、urge_time 等
- 修改 argon_ajax_urge_todo 函数使用新的邮件模板系统
This commit is contained in:
2026-01-15 15:22:01 +08:00
parent 5c2f5514c0
commit 82607ffc8b
3 changed files with 34 additions and 18 deletions

View File

@@ -5415,7 +5415,7 @@ function argon_update_themeoptions(){
update_option('argon_email_social_links', $social_links);
// 保存邮件模板配置
$email_types = array('comment_notify', 'reply_notify', 'user_register', 'password_reset', 'general');
$email_types = array('comment_notify', 'reply_notify', 'user_register', 'password_reset', 'todo_urge', 'general');
foreach ($email_types as $type) {
// 保存启用状态
argon_update_option_checkbox('argon_email_template_' . $type . '_enabled');