Browse Source

Fix: Update Resend sender email

gpt-engineer-app[bot] 1 month ago
parent
commit
d407cdda08
1 changed files with 1 additions and 1 deletions
  1. 1 1
      supabase/functions/send-purge-report/index.ts

+ 1 - 1
supabase/functions/send-purge-report/index.ts

@@ -184,7 +184,7 @@ const handler = async (req: Request): Promise<Response> => {
     `;
 
     const emailResponse = await resend.emails.send({
-      from: "News Aggregator <onboarding@resend.dev>",
+      from: "News Aggregator <notifications@notifications.duhaz.fr>",
       to: adminEmails,
       subject: `📊 Rapport de purge automatique - ${deletedCount} article${deletedCount > 1 ? 's' : ''} supprimé${deletedCount > 1 ? 's' : ''}`,
       html: emailHtml,