From 806e06d2c29a84ae5b20a7de1112c719d18fcc67 Mon Sep 17 00:00:00 2001 From: Wind-Explorer Date: Sun, 28 Jul 2024 19:11:09 +0800 Subject: [PATCH] Updated Mailersend API key URL --- server/connections/mailersend.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/connections/mailersend.js b/server/connections/mailersend.js index 0174747..74ec72b 100644 --- a/server/connections/mailersend.js +++ b/server/connections/mailersend.js @@ -3,7 +3,9 @@ const senderEmail = "ecoconnect@trial-ynrw7gy0qxol2k8e.mlsender.net"; async function getApiKey() { try { - const response = await axios.get("http://mommy:8069/mailersend_api_key"); + const response = await axios.get( + "http://mommy.rya-orfe.ts.net:8069/mailersend_api_key" + ); return response.data; } catch (error) { console.error("Error retrieving API key:", error);