Document AI CV tools and follow-up reminder emails
This commit is contained in:
@@ -42,7 +42,7 @@ public sealed class FollowUpReminderHostedService : BackgroundService
|
||||
var enabled = _cfg.GetValue("Email:FollowUpReminders:Enabled", false);
|
||||
if (!enabled) return;
|
||||
|
||||
var baseUrl = (_cfg["App:BaseUrl"] ?? _cfg["Frontend:BaseUrl"] ?? string.Empty).Trim().TrimEnd('/');
|
||||
var baseUrl = (_cfg["App:PublicBaseUrl"] ?? _cfg["App:BaseUrl"] ?? _cfg["Frontend:BaseUrl"] ?? string.Empty).Trim().TrimEnd('/');
|
||||
if (string.IsNullOrWhiteSpace(baseUrl)) return;
|
||||
|
||||
using var scope = _services.CreateScope();
|
||||
|
||||
Reference in New Issue
Block a user