我有一個帶有輸入欄的html表單來添加一個新用戶。一旦用戶被添加到我的數據庫中,郵件將通過我的adduser.js文件中的sendmail()函數發送給她/他。郵件發送按照我的標準。但事情是我想添加一個超鏈接到正文內容。 我行是這樣的:使用Javascript通過電子郵件發送鏈接內容
sendMail(result.email, DbConfig.mailConfig.subject, "Dear" + " " + req.body.txtFirstName + req.body.txtLastName + ",\n Welcome to, COMPANY NAME " + txt.link('http://www.website.in') + "Your Login details are below: \n User name:" + req.body.txtLoginId + " \n Password:" + result.pwd)
但它不工作,我的預期。我郵件中的結果是
Dear user.
Welcome to,COMPANY NAME<ahref="www.website.in"></a>.
它是這樣來的,但鏈接重定向到指定的目標。我的期望是:
Dear user.
Welcome to,COMPANY NAME.(on click of company name it redirects to targeted link).
我該如何做到這一點。我嘗試直接在我的JS中使用標記。它也適用於我的情況。
感謝,
沒有辦法的JavaScript可以發送這樣的郵件...你可能使用的是PHP? – 2013-04-23 13:59:36
你不能使用JavaScript發送電子郵件,你需要使用一些服務器端技術,如使用節點的php/java – 2013-04-23 13:59:42
,我有一個json文件 – Aarthi 2013-04-23 14:01:11