From 71650ed9048eaef28179f45c3d026396bcbd278c Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Tue, 7 Jul 2026 15:47:11 +0000 Subject: [PATCH] SMTP: add reply_to config field Co-Authored-By: Claude Sonnet 4.6 --- src/integrations/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/integrations/schema.js b/src/integrations/schema.js index e99571b..5346eda 100644 --- a/src/integrations/schema.js +++ b/src/integrations/schema.js @@ -34,7 +34,7 @@ export const INTEGRATIONS = { }, smtp: { name: 'SMTP Email', - configFields: ['host', 'port', 'from'], + configFields: ['host', 'port', 'from', 'reply_to'], secretFields: ['user', 'pass'], }, }