2014-03-25 71 views
0

你好,我想要得到的是當我點擊電子郵件中的鏈接它捕獲電子郵件的主題,並將其作爲參數傳遞給另一個頁面,我可以存儲此主題行。 例如這裏是我的電子郵件模板代碼如何使用javascript將郵件主題作爲參數傳遞?

<a href=" https://forms.netsuite.com/app/site/crm/externalleadpage.nl?compid=31156& formid=71&h=7a67f393397380048296" target="_blank">Download this publication featuring research from Gartner now</a> 

在HREF我想通過電子郵件主題作爲參數傳遞給其他頁這是一種形式。

+0

你是什麼意思?您的代碼與電子郵件無關 – Raptor

+0

它在電子郵件模板中 – user2787474

回答

1

我認爲這真的取決於您如何生成電子郵件主題和正文,生成電子郵件時,如果您正在使用服務器端腳本,則可以將郵件主題變量放在郵件中的鏈接中。

例如,如果您使用php郵件功能發送郵件,以下是發送郵件的代碼。

$to  = '[email protected]'; 
$subject = 'the subject'; 
//Notice that we just included the subject in $message as part of the link address. 
$message = '<a href="https://xxxx?subject=${subject}">xxxx</a>'; 
$headers = 'From: [email protected]' . "\r\n" . 
    'Reply-To: [email protected]' . "\r\n" . 
    'X-Mailer: PHP/' . phpversion(); 

mail($to, $subject, $message, $headers); 

如果您使用其他工具,則方法將類似。

相關問題