From daa1f08226ebafefb76be443d8e5c2953bb5d6ed Mon Sep 17 00:00:00 2001 From: Gourav Saini Date: Thu, 22 Aug 2024 11:17:46 +0530 Subject: [PATCH] fix/changes --- src/routes/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 1c640555..556fc666 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -16,7 +16,7 @@ message: string ) => { let anchor = document.createElement("a"); - anchor.href = `mailto:spscpkl@gmail.com?subject=Hey, this is ${name} and I wanted to know more about SPS&body=Hi,I found this website and wanted to share this message: ${message}. I am adding my phone number ${phone} and email ${email} here and hope to get responded soon.`; + anchor.href = `mailto:info@spsrealty.in?subject=Hey, this is ${name} and I wanted to know more about SPS&body=Hi,I found this website and wanted to share this message: ${message}. I am adding my phone number ${phone} and email ${email} here and hope to get responded soon.`; anchor.click(); anchor.remove(); };